Я работаю над переносом реального офисного проекта на Entity Framework Core и .NET Core.Я застрял, когда я хочу сделать Add-Migration.Кажется, что свойство навигации и внешний ключ не настроены должным образом.После многих попыток я не смог решить мою проблему.
Сообщение об ошибке при Add-Migration:
The relationship from 'PlanLang.Plan' to 'Plan.Lang' with foreign key properties {'PlanId' : int} cannot target the primary key {'GolfClubId' : int, 'PlanId' : int} because it is not compatible. Configure a principal key or a set of compatible foreign key properties for this relationship.
Вот мои сущности:
GolfClub
public class GolfClub
{
public int Id { get; set; }
//.. other properties, not important
}
План
public class Plan
{
public int GolfClubId { get; set; }
public int PlanId { get; set; }
//.. other properties, not important
public GolfClub GolfClub { get; set; }
public ICollection<PlanLang> Lang { get; set; }
}
PlanLang
public class PlanLang
{
public int GolfClubId { get;set; }
public int PlanId { get; set; }
public string Lang { get; set; }
//.. other properties, not important
public GolfClub GolfClub { get; set; }
public Plan Plan { get; set; }
}
Вот мои конфигурации:
public class GolfClubConfiguration : IEntityTypeConfiguration<GolfClub>
{
public void Configure(EntityTypeBuilder<GolfClub> builder)
{
builder.ToTable("gc_master");
builder.HasKey(k => new { k.Id });
builder.Property(p => p.Id).ValueGeneratedNever(); // to disable auto-increment
}
}
public class PlanConfiguration : IEntityTypeConfiguration<Plan>
{
public void Configure(EntityTypeBuilder<Plan> builder)
{
builder.ToTable("gc_plan_master");
builder.HasKey(k => new { k.GolfClubId, k.PlanId });
builder.Property(p => p.GolfClubId).ValueGeneratedNever(); // to disable auto-increment
builder.HasMany(p => p.Lang).WithOne(p => p.Plan).HasForeignKey(FK => FK.PlanId);
builder.HasOne(p => p.GolfClub).WithMany().HasForeignKey(FK => FK.GolfClubId);
}
}
public class PlanLangConfiguration : IEntityTypeConfiguration<PlanLang>
{
public void Configure(EntityTypeBuilder<PlanLang> builder)
{
builder.ToTable("gc_plan_master_lang");
builder.HasKey(k => new { k.GolfClubId, k.PlanId, k.Lang });
builder.Property(p => p.GolfClubId).ValueGeneratedNever(); // to disable auto-increment
builder.Property(p => p.Lang).HasMaxLength(5);
builder.HasOne(p => p.GolfClub).WithMany().HasForeignKey(FK => FK.GolfClubId);
}
}
Я хочу, чтобы у Plan был 1 внешний ключ (GolfClubId) и PlanLang 2 (PlanId и GolfClubId).
Каким образом я могу продолжить?
Спасибо за ваши ответы.