var query = from ch in Client.wcf.context.CashHeading
where ch.Id_customer == customern//cc.Id
from cs in Client.wcf.context.Cash
where cs.Id_cashheading == ch.Id
from gg in Client.wcf.context.Good
where gg.Id == cs.Id_good
select gg.Price.Value;
私はそれを処理する内部エラーを取得しています:
Linq式をURIに変換する際のエラー:最後のナビゲーションの後でのみクエリオプション(orderby、where、take、skip)を指定できます。
理由がわかりません、完全なソースは ここ、GitHubにあります