Hello
Can you please check this document Create a Second DbContext to create a second migration if it will helps you.
Thank you.
Hello ,
Can you please try this solution once again
To fix this issue, the ABP Pro license key must be securely stored and passed to the pipeline environment.
This ensures secure ABP Pro license usage in CI/CD while allowing integration tests to run smoothly.
This solution ensures integration tests work in Azure DevOps while keeping the ABP Pro license key secure
Thank you.
Hello,
Please try the following steps and check if the issue is resolved:
abortConnect=false
in appsettings.json.
An error occurred using the connection to database 'sqldb-myapp' on server 'sql-myserver.database.windows.net'.
In your connection string, try addingMaxPoolSize=200
and check if it resolves the issue.Thank you.
Hello
Can you check this similar issue https://abp.io/support/questions/7742/apiabpapplication-localization-and--apiabpapplication-configuration-error-every-5-minutes-on-APIHost-server
Thank you.
Hello ,
Please share your project support@abp.io email along with ticket no.
Thanks,
Hello ,
Ensure that the new custom domains are added to the Redirect URLs
column in OpenIddictApplications
table.
appsettings.json
files across all services and redeploy them.appsettings.json
files in the Kudu console
of Azure Web Apps.Thank you.
please check once this link https://github.com/abpframework/abp/issues/8019#issuecomment-796776155
Hello
a composite key using LoginProvider
and ProviderKey
, which are meant to be the primary keys for IdentityUserLogin
:
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);
modelBuilder.Entity<IdentityUserLogin>(b =>
{
b.HasKey(l => new { l.LoginProvider, l.ProviderKey });
});
}
Try to this code and check it's work or not ?
Thank you.