假設我有3個表格:A(aid,...),B(bid,...)Relationship(aid,bid,...) 然後我有一個幫助作爲參數,我想要得到結果從b。如果使用SQL,將會像如何編寫linq從不同的表中獲取數據?
select b.* from B join Relationship on b.bid = Relationship.bid
where relationship.aid = aid_param
如何編寫linq,其結果與上面的SQL相同。 (在這種情況下外鍵沒有正確創建)?
@tvanfosson他想要選擇B(等在我的回答中),而不是關係。 – eglasius 2009-11-06 19:22:14
糟糕。我已更新選擇任何具有匹配關係的B。 – tvanfosson 2009-11-06 19:31:54