Для картування складеного первинного ключа за допомогою Entity Framework ми можемо використовувати два підходи.
1) Перезаписавши метод OnModelCreating ()
Наприклад: у мене є клас моделей під назвою VehicleFeature, як показано нижче.
public class VehicleFeature
{
public int VehicleId { get; set; }
public int FeatureId{get;set;}
public Vehicle Vehicle{get;set;}
public Feature Feature{get;set;}
}
Код у моєму DBContext був би таким,
public class VegaDbContext : DbContext
{
public DbSet<Make> Makes{get;set;}
public DbSet<Feature> Features{get;set;}
public VegaDbContext(DbContextOptions<VegaDbContext> options):base(options)
{
}
// we override the OnModelCreating method here.
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<VehicleFeature>().HasKey(vf=> new {vf.VehicleId, vf.FeatureId});
}
}
2) За анотаціями даних.
public class VehicleFeature
{
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
[Key]
public int VehicleId { get; set; }
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
[Key]
public int FeatureId{get;set;}
public Vehicle Vehicle{get;set;}
public Feature Feature{get;set;}
}
Перегляньте посилання нижче для отримання додаткової інформації.
1) https://msdn.microsoft.com/en-us/library/jj591617(v=vs.113).aspx
2) Як додати складений унікальний ключ за допомогою EF 6 Fluent Api?
SomeId
string
int