Hi,
You can try this:
ObjectExtensionManager.Instance
.MapEfCoreProperty<IdentityUser, int>(
"Xyz",
(entityBuilder, propertyBuilder) =>
{
entityBuilder.HasIndex("Xyz").IsUnique();
propertyBuilder.ValueGeneratedOnAdd();
propertyBuilder.Metadata.SetAfterSaveBehavior(PropertySaveBehavior.Ignore);
}
);
Hi,
We will fix it. thanks.
Hi,
Sorry, but can you explant it in detail? Thanks.
I need to know which project dependencies (Domain, Domain.Shared, etc...) would be necessary with "DEPENDSON" attributes in EntityFrameworkCore/DBMigrator to seed the tables outside of the standard template.
Dbmigrator is the smallest seeding program, you can refer to it.
column p.TenantId does not exist
Can you try adding and applying the migration?
Run the dotnet ef migrations add xxx and dotnet ef database update on the ProductService.EntityFrameworkCore folder.
column p.TenantId does not exist
Can you try adding and applying the migration?
Run the dotnet ef migrations add xxx and dotnet ef database update on the ProductService.EntityFrameworkCore folder.
Hi,
The gateway and product service.