Super
Super
After the issue https://github.com/abpframework/abp/issues/12470 is complete, we can use the new integration service to replace most action ETOs publishing. The reasons: 1. The request side can **get results immediately** by...
We are using the bread crumbs in the wrong way. For example, the product management page of the EShop.Products module ```CSharp PageLayout.Content.BreadCrumb.Add(L["Menu:Product"].Value); PageLayout.Content.MenuItemName = ProductsMenus.Product; ``` It should be ```CSharp...
Currently, the `DisplayOrder` properties in EasyAbp modules are DESC ordered. I want to change them to ASC ordered. That will be a breaking change, so we should create a PR...
* Install the `NSwag.AspNetCore` package to the Web project of the sample solution and change the module's configurations. * Add `[ApiExplorerSettings(GroupName = "EasyAbpMyModuleName")]` attribute to the abstract class **MyModuleNameController**. *...
* Change `[DependsOn(xxx)]` to `[DependsOn(typeof(xxx))]`. * Refer https://github.com/EasyAbp/FileManagement/blob/master/README.md to improve README.md of other repositories.
After https://github.com/EasyAbp/FileManagement/issues/17, the FilePath property is moved. * We should consider how to get and current directory path and show it as the bread crumb on the file list page....