私のテーブル構造はここにあります
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 の使用方法