Activities of "maliming"

Answer

hi

We don't have video. You should start with its documentation first, if you get a problem, please share it here.

https://blazor.syncfusion.com/documentation/getting-started/blazor-webassembly-dotnet-cli

hi Neozzz

You can completely disable transactions if your database doesn't support it.

https://support.abp.io/QA/Questions/2176#answer-a0b36b39-5bdd-3259-a49e-3a005ca3118c

https://github.com/abpframework/abp/pull/10658

hi

If you don't need it, you can consider using middleware to short-circuit the request. https://docs.abp.io/en/abp/4.4/UI/AspNetCore/Dynamic-JavaScript-Proxies#service-proxy-script-endpoint

hi neethucp

How can I reproduce this problem? Can you share some code and steps?

hi

https://support.abp.io/QA/Questions/631/Support-for-many-to-one-and-many-to-many-relationships https://community.abp.io/articles/many-to-many-relationship-with-abp-and-ef-core-g7rm2qut

hi

[Dependency(ReplaceServices = true)]
public class MyUnitOfWorkManager : IUnitOfWorkManager, ISingletonDependency
{
    private readonly UnitOfWorkManager _innerUnitOfWorkManager;

    public MyUnitOfWorkManager(UnitOfWorkManager innerUnitOfWorkManager)
    {
        _innerUnitOfWorkManager = innerUnitOfWorkManager;
    }

    public IUnitOfWork Begin(AbpUnitOfWorkOptions options, bool requiresNew = false)
    {
        options.IsTransactional = false;
        return _innerUnitOfWorkManager.Begin(options, requiresNew);
    }

    public IUnitOfWork Reserve(string reservationName, bool requiresNew = false)
    {
        return _innerUnitOfWorkManager.Reserve(reservationName, requiresNew);
    }

    public void BeginReserved(string reservationName, AbpUnitOfWorkOptions options)
    {
        options.IsTransactional = false;
        _innerUnitOfWorkManager.BeginReserved(reservationName, options);
    }

    public bool TryBeginReserved(string reservationName, AbpUnitOfWorkOptions options)
    {
        options.IsTransactional = false;
        return _innerUnitOfWorkManager.TryBeginReserved(reservationName, options);
    }

    public IUnitOfWork Current => _innerUnitOfWorkManager.Current;
}
public override void ConfigureServices(ServiceConfigurationContext context)
{
    context.Services.AddSingleton(typeof(UnitOfWorkManager));
}

hi

I will provide a solution, please wait a moment.

hi

Can you share your steps and error details?

Answer

Have you tried it according to its documentation?

hi

Can you explain it a lot more?

Showing 9091 to 9100 of 10645 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