Activities of "liangshiwei"

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

Showing 2891 to 2900 of 6692 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 12, 2025, 10:20