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"];
});
}```
hi
ID(guid)
It's the value of the primary key. You just need to store it in the Tenant_Admin Database and then query some entities based on it.
Microservice A, table: Customers , database: DB1 | Guid | Name | | --- | --- | | 3ce8f395-2f9b-4531-b02f-ae702c2f4dbf | C1 | | 886446c2-a5b1-4f3c-ac54-c81d02e5fe71 | C2 |
Microservice B, table: BusinessUnits , database: DB2 | BusinessUnits Guid | BusinessUnits Code | --- | --- | | bd749c47-d05f-4cd7-a705-a4c27dddfd07 | 00001 | | 8ce29410-6ed1-4fc7-910f-5046a311ce07 | 00002 |
Microservice B, table: BusinessUnitsAndCustomer , database: DB2 | Customers Guid | BusinessUnits Guid | --- | --- | | 3ce8f395-2f9b-4531-b02f-ae702c2f4dbf | bd749c47-d05f-4cd7-a705-a4c27dddfd07 | | 886446c2-a5b1-4f3c-ac54-c81d02e5fe71 | 8ce29410-6ed1-4fc7-910f-5046a311ce07 |
hi
Now, I want to read the custom setting in another microservice so I have created custom setting value provider in my another microservice and I registered value provider in app module.
You only need to add this to the administration microservice once.
I have registered custom setting definition and provider in AdministrationServiceApplicationModule
You can try to move this to Domain module layer.