ABP Framework version: v4.4.0 UI type: Blazor DB provider: EF Core Tiered (MVC) or Identity Server Separated (Angular): no Exception message and stack trace: no Steps to reproduce the issue:"with ABP Suite create backend entity/aggregateroot mixed Singular and Plural name"
Generated mixed: singular file name "IContactAppService.cs" plural file content "public interface IContactsAppService : IApplicationService" singular file name "ContactAppService.cs" plural file content "public class ContactsAppService : ApplicationService, IContactsAppService"
Expected all singular: singular file name "IContactAppService.cs" singular file content "public interface IContactAppService : IApplicationService" singular file name "ContactAppService.cs" singular file content "public class ContactAppService : ApplicationService, IContactAppService"
Workaround: Edit templates -> inside all templates with AppService dependency and replace %%entity-name-plural%% with %%entity-name%%
ABP Framework version: v4.4.0 UI type: Blazor DB provider: EF Core Tiered (MVC) or Identity Server Separated (Angular): no Exception message and stack trace: no Steps to reproduce the issue:"with ABP Suite create user interface entity/aggregateroot"
Wrong namespace in Frontend.Blazor.Page.Item.razor_cs.txt: generated "namespace company.Project.Blazor.Pages.Project" expected "namespace company.Project.Blazor.Pages"
Workaround: Edit templates -> Frontend.Blazor.Page.Item.razor_cs.txt from "namespace %%solution-namespace%%.Blazor.Pages%%if:IsUiBlazorServer%%.%%only-project-name%%%%" to "namespace %%solution-namespace%%.Blazor.Pages%%if:IsUiBlazorServer%%%%</if:IsUiBlazorServer>%%"