Activities of "maliming"

hi

There will be many optimizations in the new versions, if you can upgrade this is the best solution.

  1. it is very slow

The blazor wasm will be slow on first load.

then after I publish it to IIS, the host works, but the blazor couldn't work after the login page ,

Did you check this document?

https://docs.microsoft.com/en-us/aspnet/core/blazor/host-and-deploy/webassembly?view=aspnetcore-6.0

If I use local redis, site will work good I try to use redis in Azure and another machine - I have problems with performance...

hi

It seems to be a network issue. please check the network status between the two computers(website and redis)

Please make your repository Private first.

hi

You can try looking for some open-source libraries. I don't have any suggestions. This is mainly related to the NET Core rather than abp framework. : )

hi

There is a community post that you can refer to. https://community.abp.io/posts/generate-pdfs-in-an-abp-framework-project-using-scryber.core-x9yh1vfa

so with ".Result", we don't require "await", right

No, Never use the async method like this, always using await .

Regarding Tenant Database migration hadler, where is it located, or should be located?

Please global search the keywords in images below.

hi

Howt about this way?

app.UseAbpRequestLocalization();
app.Use(async (httpContext, next) =>
{
    if (CultureInfo.CurrentUICulture.TwoLetterISOLanguageName == "ar")
    {
        CultureInfo.CurrentUICulture = new CultureInfo("ar")
        {
            DateTimeFormat =
            {
                ShortDatePattern = "your custom format",
                Calendar = new GregorianCalendar()
                // other properties of DateTimeFormat 
            }
            // other properties of CultureInfo
        };
    }
    await next(httpContext);
});

hi

https://support.abp.io/QA/Questions/3327/

hi

Can you consider it like this?

@if (CultureInfo.CurrentUICulture.TwoLetterISOLanguageName == "ar")
{
    <input type="text"
           class="form-control"
           name="StartDate"
           value="@DateTime.Now.AddMonths(-1).Date.ToString("Custom your ShortDatePattern")" />
}
else
{
    <input type="text"
           class="form-control"
           name="StartDate"
           value="@DateTime.Now.AddMonths(-1).Date.ToString(CultureInfo.CurrentUICulture.DateTimeFormat.ShortDatePattern)" />
}
Showing 7741 to 7750 of 10652 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