Abdul Sammad
Abdul Sammad
If you use python3 on linux just replace python with python3 in spawn process
Unable to create a 'DbContext' of type ''. The exception 'Unable to determine the relationship represented by navigation 'AppUser.CreatorUser' of type 'AppUser'. Either manually configure the relationship, or ignore this...
` base.OnModelCreating(builder); /* Include modules to your migration db context */ builder.Entity(b => { b.ToTable("AbpUsers"); b.ConfigureByConvention(); b.HasOne().WithOne().HasForeignKey(x => x.Id); }); builder.ConfigurePermissionManagement(); builder.ConfigureSettingManagement(); builder.ConfigureBackgroundJobs(); builder.ConfigureAuditLogging(); builder.ConfigureIdentity(); builder.ConfigureOpenIddict(); builder.ConfigureFeatureManagement(); builder.ConfigureTenantManagement();` public class...