如何将此 linq 表达式转换为方法形式?
如何
from f in fake
join r in real
on f.Year equals r.Year
into joinResult
from r in joinResult.DefaultIfEmpty()
select (r == null ? f : r);
使用方法形式在 Linq 中转换此 linq。
fake.Join(real, ...)
有没有一个工具可以帮助我做到这一点?
How can I convert this linq
from f in fake
join r in real
on f.Year equals r.Year
into joinResult
from r in joinResult.DefaultIfEmpty()
select (r == null ? f : r);
in Linq with method form.
fake.Join(real, ...)
Is there a tool that could help me to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ReSharper 将其转换为以下内容:
This is what ReSharper converted it into: