0
表1的另一列中選擇單個值:從一列和值列表從不同的表
productId
productName
表2:
Id
productId - foregn key with references to table 1
productLoacation
我要予以選取的productId,產品名稱和productLoactions的名單?
下面我已經試過了,
var mailAddress = from tb1 in DbContext.table1
join tb2 in DbContext.Table2 on tb1.productId equals tb2.productId
where tb1.table1== 1234
select { tb1.productName, tb2.productLoacation.ToList()};
我怎麼能在一個查詢achive而無需創建一個實體?