hi
Custom application service code and the use of Event-Bus can let the backend to get events such as user registration.
https://docs.abp.io/en/abp/latest/Event-Bus
After that, you can use the poll in Blazor to query the backend info.
hi
You can prepare a default database and switch to the new database when the user provides a connection string.
This can be complicated if you want to run the template project without a default database.
hi
https://github.com/abpframework/abp/pull/12569
hi
What are your email
settings in appsettings.json
?
another solution https://github.com/abpframework/abp/issues/6341#issuecomment-733669760
hi
Can you reproduce this in abp template project?
Try to add this to your startup project.
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="6.0.5" />
This is giving error while creating user something related to method invocation
What's the error?
You need to use YourUserEto
that contains your custom properties,
options.EtoMappings.Add<IdentityUser, YourUserEto>(typeof(AbpIdentityDomainModule));
You can configure it in the Identity microservice.
You can also customize the ETO class.
See https://docs.abp.io/en/abp/latest/Distributed-Event-Bus#event-transfer-object
https://github.com/abpframework/abp/blob/e499f40fc1e7f041def67b6bf8d30d5b337c4b54/modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/AbpIdentityDomainModule.cs#L39 https://github.com/abpframework/abp/blob/e3e1779de6df5d26f01cdc8e99ac9cbcb3d24d3c/modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/IdentityDomainMappingProfile.cs#L10