hi
I don't think this is an abp problem because we just using some class as output.
I think using these classes in a plain asp net core will cause the same problem.
hi
The job was for a tenant in the platform, how come this entry was stored in Host_Admin database and not in Tenant_Admin database ?
BackgroundJobsDbContext always creates and maintains jobs on the Host side.
Can you prepare a template project to reproduce? liming.ma@volosoft.com
The MaxJobArgsLength { get; set; } is 1024 * 1024, but you can change its length.
https://github.com/abpframework/abp/blob/reloadEx/modules/background-jobs/src/Volo.Abp.BackgroundJobs.Domain.Shared/Volo/Abp/BackgroundJobs/BackgroundJobRecordConsts.cs#L13
Thanks balessi75
We fixed this on 7.2.x patch version and 7.3 stable version.
hi
We will update milestone info on these links.
https://docs.abp.io/en/abp/7.2/Road-Map https://docs.abp.io/en/abp/7.3/Road-Map https://docs.abp.io/en/commercial/7.3/release-notes
hi
The OpenIddict data will seed by OpenIddictDataSeedContributor.
You can run the .DbMigrator to seed the data.
hi
I think you can refer to the Microsoft document.
https://github.com/abpframework/abp/issues/17029
hi
Can you try to rename the method name to AllotShareAsync?
hi
You can try to login by abp login --device command
hi
That means your project has not been completely changed to MySQL.
You can search sqlserver keyword in your solution globally.
hi
Im not a swagger expert but you can try that:
options.SwaggerDoc("v1", new OpenApiInfo { Title = "BookStore API", Version = "v1" });
options.DocInclusionPredicate((docName, description) => true);
options.UseInlineDefinitionsForEnums();
options.UseAllOfToExtendReferenceSchemas();
options.CustomSchemaIds(type => Regex.Replace(type.FullName, "`|=|\\[|\\]|\\s|,", ""));