hi
You can inject ILanguageProvider service to get all languages.
https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.Localization/Volo/Abp/Localization/ILanguageProvider.cs
hi
You can remove the PermissionDataSeedContributor from AbpDataSeedOptions
public override void ConfigureServices(ServiceConfigurationContext context)
{
PostConfigure<AbpDataSeedOptions>(options =>
{
options.Contributors.RemoveAll(x => x == typeof(PermissionDataSeedContributor));
});
}
public class YourPermissionDataSeedContributor : IDataSeedContributor, ITransientDependency
hi
I downloaded your project, can you share some steps or tips?
You can try to change to a new folder, then check out the git code, and try to publish again.
hi
liming.ma@volosoft.com
Please make your project as simple as possible.
Thanks
hi
Yes, I think it was fixed in the v3.0.0.
Are you having this problem again in 3.x? I will ask my colleague to confirm this.
hi
You can try to override DefaultAmazonS3ClientFactory class to set additional properties, I'm not sure if it supports this.
https://github.com/aws/aws-sdk-net
https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.BlobStoring.Aws/Volo/Abp/BlobStoring/Aws/DefaultAmazonS3ClientFactory.cs#L30-L58
hi
I don't know your exact code, but you just need to create the resources and localize the translations on the server side, and after that you can use them in web.public, which you can see in a new template project.
If my understanding is wrong, you can share some code to explain your case in detail.
hi
https://github.com/abpframework/abp-samples/blob/master/Dapper/DapperDemo/Repositories/DapperBookRepository.cs https://community.abp.io/posts/new-raw-sql-queries-for-unmapped-types-with-ef-core-8.0-ahc815sn https://github.com/abpframework/abp-samples/tree/master/StoredProcedureDemo