我希望你能帮助我。
我在数据库中有 2 个表:Bill 和 BillItem。这些表在数据库中配置为一对一关系,其中 bill 是主表,而 BillItem 是依赖表
表 Bill 的结构:
Int BillId (PK)
Int BillTypeId Not Null
Varchar(5) Usr Not Null
DateTime Tm Not Null
表 BillItem 的结构:
Int BillItemId (PK)
Int ItemId Not Null
Varchar(5) Usr Not Null
DateTime Tm Not Null
我想使用 Fluent API 和 Entity Framework 4.1 Code First 方法将这两个表映射到单个 POCO 类中
我还想配置表列名称以在 POCO 类中使用不同的属性名称(即 Id 而不是 BillId,User 而不是 Usr)
这是一个遗留数据库,我无法修改它的任何对象。
怎样才能做到这一点?
谢谢你们。
结果类应该是(如果可以的话):
public int Id {get;set;}
public int BillTypeId {get;set;}
public int ItemId {get;set;}
public string User {get;set;}
public string User1 {get;set;}
public DateTime Tm {get;set;}
public DateTime Tm1 {get;set;}