Activities of "liangshiwei"

See https://dba.stackexchange.com/questions/264/guid-vs-int-which-is-better-as-a-primary-key.

ABP use sequential GUID, It is good for indexing.

Yes , there are the same.

Try:

EntityFrameworkCore.DbMigrations instead of EntityFrameworkCore project. See https://docs.abp.io/en/abp/latest/Startup-Templates/Application#entityframeworkcore-dbmigrations-project

Hi

identity server clients are not isolated from tenants, The client can be a web application. Web application can be multi-tenant.

You can keep migration project, use dotnet ef migrations script command to generates sql and apply to database(just remove __EFMigrationsHistory table changes,you should not have this table). see https://docs.microsoft.com/en-us/ef/core/miscellaneous/cli/dotnet#dotnet-ef-migrations-script

You should login to the application as a tenant to create identity server clients.

I did not see the relevant content in the commercial documents

Hi

Try:

Configure<AbpBundlingOptions>(options =>
{
    options
        .ScriptBundles
        .Configure(LeptonThemeBundles.Scripts.Global, bundle => {
            bundle.AddContributors(typeof(RemoveJqueryScriptContributor));
        });
});

I will try reproduce your problem, but you should remove download file link and file on Internet, because it include your License.

Try:

var client = new HttpClient();
var disco = await client.GetDiscoveryDocumentAsync(_configuration["IdentityClients:Default:Authority"]);
if (disco.IsError)
{
    Console.WriteLine(disco.Error);
    return;
}

client.DefaultRequestHeaders.Add(TenantResolverConsts.DefaultTenantKey,<tenant>);

// request token
var tokenResponse = await client.RequestPasswordTokenAsync(new PasswordTokenRequest
{
    Address = disco.TokenEndpoint,
    ClientId = _configuration["IdentityClients:Default:ClientId"],
    ClientSecret = _configuration["IdentityClients:Default:ClientSecret"],
    UserName = _configuration["IdentityClients:Default:UserName"],
    Password = _configuration["IdentityClients:Default:UserPassword"],
    Scope = _configuration["IdentityClients:Default:Scope"]
});
Showing 6591 to 6600 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 November 03, 2025, 07:01