我的表结构在这里
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 ?