Activities of "liangshiwei"

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?

Answer

Hi,

The example already includes all points.

https://github.com/realLiangshiwei/Qa2716

Answer

HI,

  1. No, you don't need it, the TypePredicate is a selector, you can use any method

  2. 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.

  3. 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

Showing 5201 to 5210 of 6693 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on December 17, 2025, 07:08
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.