ABP localization resources from database

236 Views Asked by At

We are using ABP framework. How do I wire up localization resources (translations) from other source (e.g. database or some external API) rather than file. In all examples it just shows how to add json file with resources.

options.Resources
            .Add<MetadataResource>("en")
            .AddBaseTypes(typeof(AbpValidationResource))
            .AddVirtualJson("/Localization/Metadata");

But how to wire up that all translations would be loaded from database?

0

There are 0 best solutions below