我在映射现有数据库时遇到问题。
2个表格(简化)
"SomeEntity"
Id int
Name nvarchar
和
"EntityProperty"
EntityId int
Name nvarchar
并且具有从实体到实体属性的一对多关系。
如何使用EF 4.1 Code First进行映射?
提前谢谢。已编辑1:
好的)这是我的代码
class Program
{
static void Main(string[] args)
{
var context = new DataContext();
var result = context.SomeEntity.Include(p => p.EntityProperties);
foreach (var entity in result)
{
Console.WriteLine(entity);
}
}
}
public class SomeEntity
{
public int EntityId { get; set; }
public string Name { get; set; }
public virtual ICollection<EntityProperty> EntityProperties { get; set; }
public override string ToString()
{
return string.Format("Id: {0}, Name: {1}", EntityId, Name);
}
}
public class EntityProperty
{
public int EntityId { get; set; }
public string Name { get; set; }
}
public class DataContext : DbContext
{
public DbSet<SomeEntity> SomeEntity { get { return this.Set<SomeEntity>(); } }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Entity<SomeEntity>().ToTable("SomeEntity");
modelBuilder.Entity<SomeEntity>().HasKey(k => k.EntityId);
modelBuilder.Entity<EntityProperty>().ToTable("EntityProperty");
modelBuilder.Entity<EntityProperty>().HasKey(k => k.EntityId);
}
}
在查询中使用Include获取属性时出现问题:
无效的列名称'SomeEntity_EntityId'。 列名称“SomeEntity_EntityId”无效。
答案 0 :(得分:3)
public class SomeEntity
{
public int SomeEntityId {get;set;}
public string Name {get;set;}
public ICollection<EntityProperty> EntityProperties {get;set;}
}
public class EntityProperty
{
public int EntityPropertyId {get;set;}
public string Name {get;set;}
}
创建ICollection(在关系的'1'侧)应足以设置1:N关系。它将在EntityProperty表中创建SomeEntity_Id(或SomeEntityId)列。
编辑:顺便说一句:如果你想启用延迟加载,你可以将该集合设置为虚拟。
public virtual ICollection<EntityProperty> EntityProperties {get;set}
编辑:
public class SomeEntity
{
[Key]
public int Id {get;set;}
public string Name {get;set;}
}
public class EntityProperty
{
// What is PK here? Something like:
[Key]
public int Id {get;set;}
// EntityId is FK
public int EntityId {get;set;}
// Navigation property
[ForeignKey("EntityId")]
public SomeEntity LinkedEntity {get;set;}
public string Name {get;set;}
}
首先尝试这个..然后你可以再次添加ICollection,这次我没有包含它以保持简单(你还是查询属性..但是:context.EntityProperties.Where(x=>x.EntityId == X);
)
答案 1 :(得分:1)
我解决了问题。 我无法向关系表添加简单的PK。我在所有唯一字段上添加了复杂的PK并映射了一对多。就是这样。