Activities of "liangshiwei"

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"]
});

You can publish .Domain Nuget package to your private Nuget server.

Showing 6591 to 6600 of 6692 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 10, 2025, 06:30