Hi,
Sorry I didn't find anything.
Could you share the full error logs and more code detail? thanks.
Hi,
We found another area when adding a user...
Can you share the error logs?
Sorry, should be CompleteAsync
. (because there is no IDE code prompt here)
Hi,
We are using signalr in chat module, you can download the source code of chat module and check it
Hi,
As I said before, this is Blazor's design. When switching pages, the component will be disposed, but the previous component code is still executing.
You can check my PR: https://github.com/abpframework/abp/pull/17040
Hi,
you need to roll back the main transaction, and create a new transaction to record the log.
try
{
await _repositpry.InsertAsync(...xxxx, autoSave: true)
}
catch(exception e)
{
await _unitOfWorkManager.Current.RollbackAsync();
}
final
{
using (var uow = UnitOfWorkManager.Begin(requiresNew: true, isTransactional: true))
{
.....
await uow.CommitAsync();
}
}
Hi,
I will check all the missing localized text.
Sorry for the misunderstanding
Can you share a test project? my email is shiwei.liang@volosoft.com
HI,
Can you check those? https://github.com/ThreeMammals/Ocelot/issues/579 https://github.com/ThreeMammals/Ocelot/issues/271