LINQ:如何在多个字段上使用 linq 扩展方法样式进行 JOIN?
在下面的连接中,我想使用多个字段来进行连接,而不仅仅是一个字段。
var join = group.Join(procSums, g => g.DeptID, ps => ps.key.deptID, (g, ps)...
我发现的所有示例都使用查询样式来执行此操作,但我无法翻译它。
谢谢!
In the Join below, I'd like to use multiple fields to do the join rather than just one field.
var join = group.Join(procSums, g => g.DeptID, ps => ps.key.deptID, (g, ps)...
All examples Ive found use the query style to do this and I can't translate it.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您只需根据新的匿名对象加入:
You just have to Join based on new anonymous objects:
您需要传递使用字段创建匿名类型的 lambda 表达式。
例如:
匿名类型必须完全匹配。
You need to pass lambda expressions that create anonymous types with the fields.
For example:
The anonymous types must match exactly.