我在我的EntityFramework中有多對多的關係。我想查詢所有與特定「mannschaft」有關的「teilnehmer」。LINQ多對多的查詢拋出NotSupportedException
這裏是我的查詢
var teilnehmerquery = (from teil in myEntities.Teilnehmer
from man in teil.Mannschaft
where 1==man.MNR
select teil);
如果我運行它,查詢拋出一個NotSupportedException
。 怎麼做才能使這個工作?
如果我嘗試 VAR teilnehmerquery =(從人在teil.Mannschaft在myEntities.Teilnehmer TEIL其中man.MNR == 1選擇TEIL); 它仍然不工作 – user2147674 2013-03-19 12:27:28