Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将StackExchange数据资源管理器服务与 LinqPad 一起使用,并使用此代码选择所有用户:
from m in Users select m
现在我想选择用户的所有帖子
from u in Users join p in Posts on u.Id equals p.OwnerUserId select u
但它不起作用。我的问题在哪里?
您的问题不在于 LinqPad,而在于 OData 协议。它目前不支持 JOIN 概念。
请参阅此SO 问题并点击另一个论坛的链接,在该论坛中对此进行了更详细的讨论。
我希望这有帮助。