我有两个数据库表——Customer_Values 和 Customer_Attributes……而且它……很笨。糟糕的。
Customer_Values 有类似的东西
CustomerId | AttributeId | Value
--------------------------------
01 | 01 | Steve
02 | 01 | Frank
01 | 02 | Smith
etc...
Customer_Attributes 看起来像这样
AttributeId | Value
------------------------
01 | First Name
02 | Last Name
我想将第一个表映射到这样的实体对象中......
class {
string FirstName { get; set; }
string LastName { get; set; }
}
但我完全不确定如何做到这一点。
我正在使用 EF 6,代码优先