使用 Entity Framework 4.1 尝试获取整数集合,
基本上我有一个名为 Spec 的实体
public class Spec {
public int Id{get;set;}
public string Name {get;set;}
public ICollection<int> TypeIds {get;set;}
}
表 Specs 具有列 id、名称等,我正在尝试将 TypeIds 映射到具有列 specId TypeId 的表 SpecTypes,但我无法弄清楚它的映射
我一直在绑这样的东西
modelBuilder.Entity<Spec>().HasMany(r => r.TypesIds)
.WithMany()
.Map(m => m.ToTable("SpecTypes")
.MapLeftKey("SpecId")
.MapRightKey("TypeId"));