我有一张这样的表:
我想将它映射到这样的模型:
在我的程序中使用它时,有意义地映射它,但在数据库中这样做只会使它变得更复杂......不会添加任何有用的东西。
是否可以使用EF4 Code ONly?
答案 0 :(得分:1)
public class Sample
{
public int Id { get; set;} // primary key required
public string Name {get;set;}
public DateTime Added{get;set;}
}
public class Resource
{
// no Id defined here
public string Tree{get;set;}
public string Iron { get;set;}
public string Clay { get;set;}
}
public class SampleDB : DbContext
{
//public DbSet<Resource> Resources { get; set; } // should not be there
public DbSet<Sample> Samples { get; set; }
}