Hi,
You can directly extend these modules without using ABP suite to install again
Maybe you can try use EF Core provider: https://docs.microsoft.com/en-us/ef/core/providers/cosmos/?tabs=dotnet-core-cli
HI,
Can you share your code? thanks.
See https://support.abp.io/QA/Questions/95/Setting-Definitions-UI-in-MVC-Razor-page
Hi,
I think there is no better way, you need to query multiple times to get navigation properties. I don't think there will be performance problem. Maybe you can cache the navigation properties to get better perfoormance.
Maybe it's a problem with folder permissions, You can try to grant iis user permissions.
Hi,
You can update the ChangePassword
via override services. see: https://docs.abp.io/en/abp/latest/Customizing-Application-Modules-Overriding-Services
Hi,
The blogging module not have angular UI. It just supported with MVC UI now.
Added Base Module As A project using ABP SUITE : Account ,IdentitySErver and IdentityServer UI.
These modules are already pre install to startup template, can you explain in detail?
Hi,
It works for me.
[RemoteService(true, Name = "AbpIdentity")]
[Route("api/identity/organization-units", Order = 0)]
[ControllerName("OrganizationUnit")]
[ExposeServices(typeof(OrganizationUnitController))]
[Area("identity")]
public class MyOrganizationunitcontroller : OrganizationUnitController, IOrganizationUnitAppService
{
public MyOrganizationunitcontroller(IOrganizationUnitAppService organizationUnitAppService) : base(
organizationUnitAppService)
{
}
[HttpGet(Order = 1)]
public override Task<PagedResultDto<OrganizationUnitWithDetailsDto>> GetListAsync(
GetOrganizationUnitInput input)
{
return base.GetListAsync(input);
}
}
Swagger config:
context.Services.AddSwaggerGen(
options =>
{
options.SwaggerDoc("v1", new OpenApiInfo {Title = "qa API", Version = "v1"});
options.DocInclusionPredicate((docName, description) => true);
options.ResolveConflictingActions (apiDescriptions => apiDescriptions.First());
});