4

我的表结构在这里

Product表(Repo.Products)
ID ProductName
02 Computer

Property表(Repo.Properties)

ID PropertyName
03 CPU
04 RAM

Product Property表(Repo.ProductProperties)
ID ProductID PropertyID Value
01 02 03 1300
02 02 04 1024

我的目标输出是

Product Name CPU RAM
Computer 1300 1024

如何使用 Entity Framework 4.0 ?

4

0 回答 0