hi
I will ask our angular team.
hi
Can not use the license in a new computer. Contact to license@abp.io if you think that this is an error.
Please contact to license@abp.io
If you have AbpLicenseCode in your appsettings.json, you don't need to log in to your abp account in pipeline.
hi
Abp suite doesn't have linking tables feature.
If EF Core supports it, then the ABP framework will also support it.
hi
Yes.
https://docs.abp.io/en/commercial/latest/startup-templates/microservice/interservice-communication
hi
You can consider the ETO, which is defined on the Domain.Shared module.
https://docs.abp.io/en/abp/latest/Distributed-Event-Bus#event-transfer-object
Or the Integration Services.
https://docs.abp.io/en/abp/latest/Integration-Services
hi
I have created the example. But I was unable to reproduce the problem which exists in our application:
Since I couldn't check the code, I couldn't tell the cause of the problem. Sorry for that.
hi
You can check the source code of https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.BackgroundJobs.HangFire/Volo/Abp/BackgroundJobs/Hangfire/HangfireBackgroundJobManager.cs#L12
I guess the BackgroundJob API can get the job id.
hi
Replace AbpExceptionFilter and AbpExceptionPageFilter with yours
context.Services.Configure<MvcOptions>(options =>
{
options.Filters.ReplaceOne(
f => f is ServiceFilterAttribute fa && fa.ServiceType == typeof(AbpExceptionFilter),
new ServiceFilterAttribute(typeof(YourAbpExceptionFilter))
);
options.Filters.ReplaceOne(
f => f is ServiceFilterAttribute fa && fa.ServiceType == typeof(AbpExceptionPageFilter),
new ServiceFilterAttribute(typeof(YourAbpExceptionPageFilter))
);
});
https://github.com/abpframework/abp/blob/rel-8.0/framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/AspNetCore/Mvc/ExceptionHandling/AbpExceptionFilter.cs#L83
https://github.com/abpframework/abp/blob/rel-8.0/framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/AspNetCore/Mvc/ExceptionHandling/AbpExceptionPageFilter.cs#L68