The issue with running migrations for single-layer solutions with abp.io version 9.1.0. Anytime I run migrations even on brand new solutions I am getting the below error. I have figured out if I comment out both the Identity and OpenIdDict configurations in the DBContext then I can get it to run. But this of course then removes all identity tables. I have to manually delete the DropTables from the Migrations class after it is generated.
Any help would be much appreciated.
-
Exception message and full stack trace:
-
Unable to create a 'DbContext' of type 'HawkeyeDbContext'. The exception 'The type initializer for '<Module>' threw an exception.' was thrown while attempting to create an instance. For the different patterns supported at design time, see https://go.microsoft.com/fwlink/?linkid=851728*
protected override void OnModelCreating(ModelBuilder builder)
{
base.OnModelCreating(builder);
/* Include modules to your migration db context */
builder.ConfigureSettingManagement();
builder.ConfigureBackgroundJobs();
builder.ConfigureAuditLogging();
builder.ConfigureFeatureManagement();
builder.ConfigurePermissionManagement();
builder.ConfigureBlobStoring();
//builder.ConfigureIdentityPro();
//builder.ConfigureOpenIddictPro();
}
-
Template: app-nolayers
-
Created ABP Studio Version: 0.9.25
-
Current ABP Studio Version: 0.9.25
-
Multi-Tenancy: No
-
UI Framework: blazor-server
-
Theme: leptonx
-
Theme Style: dark
-
Run Install Libs: Yes
-
Database Provider: ef
-
Database Management System: sqlserver
-
Create Initial Migration: Yes
-
Run Db Migrator: Yes
-
Use Local References: No
-
Optional Modules:
-
TextTemplateManagement
-
LanguageManagement
-
AuditLogging
-
OpenIddictAdmin
-
3 Answer(s)
-
0
Hi, I guess you are trying to create a new migration with the
dotnet ef
tool right? Can you please check its version?dotnet ef --version
-
0
Version is 9.0.3.
But I also tried the version 8.0.7Both failed.
-
0
Version is 9.0.3.
But I also tried the version 8.0.7Both failed.
Okay, it's weird to hear "Anytime I run migrations even on brand new solutions I am getting the below error. I have figured out if I comment out both the Identity and OpenIdDict configurations in the DBContext then I can get it to run.".
We've thoroughly investigated the reported problem, but were unable to reproduce it. Given the lack of similar reports and our inability to replicate the problem, it appears to be specific to your local environment, rather than an issue with the ABP Framework.
You may check https://abp.io/support/questions/8437/unable-to-create-migration-on-Module#answer-3a16b459-a5a6-468c-499f-505910c6acfc and see if it fixes your problem or not.