hi
Can you try migrating to a new database? Or try to use LocalDB.
This seems related to your database rather than the code.
Thanks
hi
I have opened the PR to convert your project to WASM.
You can review and test it.
https://github.com/RobertoFiocchiMCSI/Cdi.Grc.AbpSupport/pull/1
Thanks.
hi
Are you using password flow as an authentication method in your Angular app?
https://abp.io/docs/latest/framework/ui/angular/authorization#authorization-in-angular-ui
Thanks.
hi
Check this document to override the Login page.
https://abp.io/docs/9.1/framework/ui/mvc-razor-pages/customization-user-interface?_redirected=B8ABF606AA1BDF5C629883DF1061649A#overriding-a-razor-page-cshtml
hi
You can override the default SMTP email sending service and log some information.
The issue might not be with your application, so check the Mail send output in the logs to troubleshoot the problem.
Additionally, you can try using MailKit or the SendGrid HTTP API to send the emails.
We don't recommend that you use the SmtpClient class for new development because SmtpClient doesn't support many modern protocols. Use MailKit(https://abp.io/docs/latest/framework/infrastructure/mail-kit) or other libraries instead. For more information, see https://github.com/dotnet/platform-compat/blob/master/docs/DE0005.md
Thanks
hi
The built-in modules(OpenIddict, Identity.Pro...) will have some PeriodicBackgroundWorkers.
hi
Can you test your code in the template project and share it?
I will download and check your code.
liming.ma@volosoft.com
Thanks
hi
What is your abp packages version?
app.UsePathBase("/Blazor");
What is the reason you use this?
We have used MapAbpStaticAssets to replace UseStaticFiles
app.UsePathBase("/Blazor");
app.UseStaticFiles();
app.UseRouting();
Can you share a project I can download and check it?
liming.ma@volosoft.com Thanks
hi
ABP hangfire module will use HangfirePeriodicBackgroundWorkerAdapter to execute your/modules PeriodicBackgroundWorkers.
Maybe we can remove HangfirePeriodicBackgroundWorkerAdapter and execute the worker directly. I will check this.
However, all workers are still listed in the Hangfire dashboard.
Thanks.