Hi,
This is because of the Action field.
Action is reserved keywords used by MVC's routing system, you can't use it.
See: https://github.com/dotnet/aspnetcore/wiki/MVC-Reserved-Keywords
Hi,
This is a big topic. First, you need to find the bottleneck. You can try using some APM server like Application Insights or Elastic APM. Then analyze the slow code it could be the backend or the database, anyway narrow it down step by step.
Hi,
Could you share a simple project or full steps to reproduce the problem? I will check it. thanks
Hi,
You can try this:
public partial class Index
{
[SupplyParameterFromQuery]
public string Page { get; set; }
[Inject]
public IJSRuntime JsRuntime { get; set; }
protected async override Task OnInitializedAsync()
{
if (Page == "/Account/~/Account/Login")
{
await JsRuntime.InvokeVoidAsync("sessionStorage.clear");
}
}
}
Hi,
Yes, this is a problem, we will fix it. your ticket was refunded.
Hi,
The 8.1.0 just released and should be available today
Hi,
We will check it and let you know.
Hi,
Yes, you can manage the connection string of a tenant https://docs.abp.io/en/commercial/latest/modules/saas#connection-string https://docs.abp.io/en/abp/latest/Connection-Strings
It seems like you are missing a namespace using.
You can reference the Volo.Abp.EntityFrameworkCore package.
https://support.abp.io/qa/questions/6990/3a11ba66-def0-421c-d1f2-39f9047dcb62