Hi,
If the database server and Redis server are installed on the client, the client can change almost everything. This is not only a problem with ABP but with all software, isn’t it?
I think we need a solution something like => not persisting these features to anywhere (just runtime).
This is a possible solution, you can replace the IFeatureManagementStore service to get feature value from memory: https://github.com/abpframework/abp/blob/dev/modules/feature-management/src/Volo.Abp.FeatureManagement.Domain/Volo/Abp/FeatureManagement/FeatureManagementStore.cs
Hi,
We plan to fix this in the next patch version.
As a solution, you can add the service to your Angular application via ng generate libaray order-service. You will also need to manually add the config folder as a secondary-endpoint.
Your ticket was refunded.
You can use command below instead creating library with upper command
npx ng generate @abp/ng.schematics:create-lib --package-name order-service --is-secondary-entrypoint false --is-module-template true --override true
ok. have a good day.
Hi,
Could you share some code? I will check it.
Hi,
Unfortunately, this is an EF Core and Oracle issue.
You might consider using SQL directly for bulk insertion
Fixed by https://github.com/abpframework/abp/pull/18962
Hi,
Could you share the full steps to reproduce the problem? I will check it. thanks.
Hi,
ABP internally uses Miniexcel to export Excel file.
You need to use dynamic column names to support localization https://github.com/mini-software/MiniExcel?tab=readme-ov-file#7-dynamiccolumnattribute
for example:
var config = new OpenXmlConfiguration
{
DynamicColumns = new DynamicExcelColumn[] {
new DynamicExcelColumn("id") {Name = L["Id"]},
new DynamicExcelColumn("name") {Name = L["Name"]},
new DynamicExcelColumn("createdate") {Name = L["Createdate"]},
new DynamicExcelColumn("point") {Name = L["Point"]},
}
};
Hi,
We will fix the problem.
bonus: it seems bug. Could you return our credit?
Yes, we will, your ticket was refunded.