hi
This seems to have nothing to do with the abp framework, you can Google to find related solutions
what are the logs of the administration microservice and web gateway?
hi
Add the package to your csproj
.
<PackageReference Include="Volo.Chat.SignalR" Version="x.x.x" />
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();
}