Activities of "maliming"

hi

The Oracle requires IsolationLevel must be ReadCommitted or Serializable

public override void ConfigureServices(ServiceConfigurationContext context)
{
    Configure<AbpOpenIddictStoreOptions>(options =>
    {
        options.DeleteIsolationLevel = IsolationLevel.ReadCommitted;
        options.PruneIsolationLevel = IsolationLevel.ReadCommitted;
    });
}

hi

Sorry. Our team is only familiar with MVC and Angular. We don't have experience with VUE.

hi

What errors did you get? Please share the error logs.

hi

https://github.com/RickIsWright/GranTrakv4a/pull/1

Many thanks. 🙏

hi

Can you share an online URL to reproduce the problem?

hi

Can you share your release app?

I will try to change it on my local.

liming.ma@volosoft.com

hi

Can you try this?

app.Use(async (httpContext, next) =>
{
    if (System.Threading.Thread.CurrentThread.CurrentCulture.Name == "ar")
    {
        using (CultureHelper.Use(System.Globalization.CultureInfo.InvariantCulture, System.Globalization.CultureInfo.InvariantCulture))
        {
            await next(httpContext);
        }
    }
    else
    {
        await next(httpContext);
    }
});

hi

Please share some of your code.

You can override this endpoint to add your code to create a tenant and create a user under this tenant.

https://abp.io/docs/latest/framework/architecture/modularity/extending/customizing-application-modules-guide https://abp.io/docs/latest/framework/architecture/modularity/extending/customizing-application-modules-overriding-services

Showing 351 to 360 of 7732 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 20, 2024, 08:30