Hi @kapil
I've created an internal topic for all the issues you opened that day. Development team will deceide to implement them or not.
Thanks you for your feedback.
Hi @james
There is a known problem with parsing enum files, it will be fixed in the next patch. I'm refunding your question credit.
Urgent solution: Change the enum file to file-scoped namespace
example:
namespace MyApplication.Cars;
public enum CarType
{
Sedan,
StationWagon,
Coupe
}
Hi @yasin.hallak.89
Pages feature comes from the free version of CmsKit module which CmsKit-Pro depends on.
You can access the source code from https://github.com/abpframework/abp/blob/dev/modules/cms-kit/src/Volo.CmsKit.Admin.Web/Pages/CmsKit/Pages/Create.cshtml
Hi again @LinchArnold,
Now I reproduced the issue, fixed it internally and added it to next patch release.
For now, i can provide you a simple but dirty workaround if this is urgent for you:
I{Your_Project_Name}DbContext.cs) in your project to something else (example: Random_Name.cs).DbSet<{Your_Enttiy's_Name}> {Your_Entity's_Name_Plural} { get; set; })Be sure to rename both MongoDb & EfCore DbContext interfaces before entity generation, but do not take any action for DbContext classes.
Can you try AccountResource instead of AbpAccountResource?
@LinchArnold Have you made any changes to *{You_Project_Name}DbContext.cs file after project creation? Can you share the file content?
There is a typo in the screenshot (AbpAccountrResource instead of AbpAccountResource). Does the error persist when you fix it?
What does the error say?
Namespace for AbpAccountResource is Volo.Abp.Account.Localization, and Volo.Abp.UI.Navigation.Localization.Resource for AbpUiNavigationResource.
using Volo.Abp.Account.Localization;
using Volo.Abp.UI.Navigation.Localization.Resource;
However, make sure that you are overriding these resources in a project/layer that references Volo.Abp.Account.Pro.Shared.Application.Contracts package. I suggest you to make these changes in the top layer (i guess HttpApi.Host for blazor) of your solution.
Hi @safi,
You overrided AbpUiNavigationResource localizations, and registration form localizations don't belong to that resource. So you need to override AbpAccountResource as well.