hi
The project you shared can't run to reproduce the problem.
Can you share a simple project?
Thanks.
hi
We don't have documentation on this, you can refer to how to implement the above requirements in aspnet core, then abp will support it.
hi
https://docs.abp.io/en/commercial/latest/themes/lepton-x/mvc
If it is not listed in the documentation, you can reply your requirements here.
hi
Working on creating a repro repo.
Thanks. liming.ma@volosoft.com
hi
What the AuthServer are you using now?
Identity Server or OpenIddict
hi
The bot closes the issue periodically, it doesn't matter, you can open it anytime you want.
hi
I do not add query parameters such as tenantid or isDelete to any of my queries. ABP does this automatically.
This is because abp has Data-Filtering feature. see https://docs.abp.io/en/abp/latest/Data-Filtering
hi
If you remove the UseUnitOfWork, the transaction becomes action scoped (or page handler scoped). We can not create a scope that covers multiple middlewares. As a result, there is no way to include audit logging into the transaction, which can be important for some companies.
https://github.com/abpframework/abp/issues/10568#issue-1048233070
hi
Yes, You should use MyAbpStringToEnumConverter until the new version is released.
hi
This link comes from App:SelfUrl of appsettings.json
I'm not familiar with the AKS. You can check the configuration.
private void ConfigureUrls(IConfiguration configuration)
{
Configure<AppUrlOptions>(options =>
{
options.Applications["MVC"].RootUrl = configuration["App:SelfUrl"];
options.Applications["Angular"].RootUrl = configuration["App:AngularUrl"];
});
}```