abp\account\src\Volo.Abp.Account.Pro.Public.Web\Pages\Account\Login.cshtml.cs
account/login
this belongs to the Account pro module.
Actually one of the module has 2 dbcontext 1 MSSQL EF and 1 NoSQL mongodb, in that case the correct target we thnik could be 2 microservice 1 with EF and 1 with Mongo that can be orchastrated via RabbitMq(async) or ApiClient (sync). Is it correct?
Yes, You can't use ef and mongodb in one project at same time.
hi
You can try this without abp first. add it to abp when it success.
You can use GetDbSetAsync
public async Task<List<PracticeICD10>> GetPracticeICD10sByPracticeAsync(int practiceId)
{
return await (await GetDbSetAsync()).ToListAsync();
}
hi
You can choose to upgrade to the latest or copy the latest 2fa code of account and identity to your project.
hi
You just need to add this module to the web module.
[DependsOn(
typeof(ChatSignalRModule)
)]
hi
Can you explain in more detail?