hi
Which project has this error?
Steps to reproduce the issue
hi
We do not provide Github for commerical. you can get it source code.
hi
5.0 already supported
Configure<AbpTenantResolveOptions>(options =>
{
options.AddDomainTenantResolver("{0}.getabp.net");
});
Configure<AbpAccountOptions>(options =>
{
options.IsTenantMultiDomain = true;
options.GetTenantDomain = (httpContext, info) => Task.FromResult(string.IsNullOrWhiteSpace(info.Name) ? $"https://getabp.net" : $"https://{info.Name}.getabp.net");
});
Configure<AbpAccountIdentityServerOptions>(options =>
{
options.IsTenantMultiDomain = true;
options.GetTenantDomain = (httpContext, extensionGrantValidationContext, info) => Task.FromResult(string.IsNullOrWhiteSpace(info.Name) ? $"https://getabp.net" : $"https://{info.Name}.getabp.net");
});
hi @rahul.patel
Please create a new question. Thanks.
This is the way of model binding, you need to dynamically generate the correct name of the form.
We are releasing 5.0 RC1 please try again later.
hi
What's your ABP Framework version?
hi
You can reconfigure the index or FK name length manually.
https://docs.oracle.com/en/database/oracle/oracle-database/21/odpnt/EFCoreIdentifier.html#GUID-FA43F1A1-EDA2-462F-8844-45D49EF67607
builder.ConfigureIdentityServer();
builder.Entity<Client>(b =>
{
b.HasMany(x => x.AllowedScopes).WithOne().HasForeignKey(x => x.ClientId).HasConstraintName("CS_F_Name").IsRequired();
});
builder.Entity<ClientScope>(b =>
{
b.HasKey(x => new {x.ClientId, x.Scope}).HasName("CS_Key_Name");
});