Hi,
Please make sure that the parameter names of StudentAppService and IStudentAppService are the same
Hi,
Did you configure Hangfire?
When you disabled the Background Job & Workers system, ABP will create an only enqueue hangfire server.
It does not execute workers or jobs, like this: https://docs.hangfire.io/en/latest/background-processing/placing-processing-into-another-process.html
HI,
I will check it
Hi,
You can try this:
Configure<AbpAspNetCoreMultiTenancyOptions>(options =>
{
options.MultiTenancyMiddlewareErrorPageBuilder = (httpContext, exception) =>
{
foreach (var cookie in httpContext.Request.Cookies)
{
httpContext.Response.Cookies.Delete(cookie.Key);
}
httpContext.Response.Redirect(httpContext.Request.Path);
return Task.CompletedTask;
};
});
Hi,
we will enhance it, for now, you need clear cookies manually
Hi,
if an admin select multi scope the sso will fail.
Is there any error logs?
Hi,
The example already includes all points.
https://github.com/realLiangshiwei/Qa2716
HI,
No, you don't need it, the TypePredicate is a selector, you can use any method
No, you don't need it, but you need to write an appropriate TypePredicate selector, it will process all application services that match the current selector.
I recommend using namespaces as we did so your solution structure will be very clear, by default all application services are v1 unless you configure selectors for them.
Hi,
The EntityTypeFullName is required.
For example:
var result = await _auditLogsAppService.GetEntityChangesWithUsernameAsync(new EntityChangeFilter(){EntityId = log, EntityTypeFullName = typeof(IdentityRole).FullName});
appsettings extra comma