yes. i have tried that but not working.
Hi Team, How i can use "Azure redis cache" in place of local redis server.
Thanks it's resolved.
i was not passing "ConcurrencyStamp" and it was breaking the update code.
IdentityUserDto identityUser = await _identityUserAppService.GetAsync(input.AppUserId);
IdentityUserUpdateDto identityUserUpdateDto = new()
{
Email = input.Email,
Name = input.Name,
Surname = input.Surname,
PhoneNumber = input.PhoneNumber,
UserName = identityUser.UserName,
ConcurrencyStamp = identityUser.ConcurrencyStamp
};
_ = await _identityUserAppService.UpdateAsync(input.AppUserId, identityUserUpdateDto);
Hi Team, WHat is the API/ Reporsitory i have to use to update user information like name, surname, email and phone no. I have tried with IIdentityUserRepository.Update() and IdentityUserAppService.Update() method but i am getting error. Considering i am doing this using Host --> Admin role user.
how i can create organization unit in api. i have tried with IOrganizationRepo.InsertAsync() but it is breaking as code is manadatory and there is no way i can set Code.
Hello @maliming, Thanks. i have refered the "Register" code and now can register the user. Now my question is how i can get the auth token for external user login i.e. google login user. Like steps are:
Similarly tenant conneciton string is available in host db --> SaasTenantConnectionStrings table. My assumption is ABP framework should take care of connection string from this table instead of hardcoding in the applicaiotn. we will have multiple tenant so we cannot keep adding connection string in code.
Hello @maliming, Can you please confirm where exactly you have made changes i.e. class and method. will follow in future.
Hello @maliming, Thanks but i am confused.
Hello @maliming, i am not sure how you have mention that there is no tenant exist. i have created 1 tenant and seperate DB for tenant. Please refer the attached screen shot. I have not shared the tenant and host db credentials in code due to security.
as per attached screen shot:
Tenant db has only following tables (higlited one is custom table. this is the same table which is not getting populated with data):