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 上