.net – 如何使用lambdas和表达式树在Linq中进行连接?

前端之家收集整理的这篇文章主要介绍了.net – 如何使用lambdas和表达式树在Linq中进行连接?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用lambda表达式在 Linq中进行JOIN,并遇到一些问题.

我有两个实体,评论评论资源.评论资源与评论相关联.我有以下代码,它的工作原理:

01 IQueryable<Data.Comment> query = ctx.DataContext.Comments;
02
03
04 if (criteria.IsDeleted == DeletedFilter.Deleted)
05    query = query.Where(row => row.DeletedBy != Guid.Empty);
06 else if (criteria.IsDeleted == DeletedFilter.NotDeleted)
07    query = query.Where(row => row.DeletedBy == Guid.Empty);
08
09 var data = query.Select(row => CommentInfo.FetchCommentInfo(row));

我需要加入CommentSources对该领域的评论,我想使用,如果可能的话,像:

01 query = query.Join(join code goes here)

我如何使用表达式树中的lambdas?

还有一件事…如何在Join语句中添加Where?

而不是提出另一个问题…我该怎么做一个Where子句加入?例如,我在我想要过滤的CommentSource上有一个名为SourceId的字段.

解决方法

你需要指定五件事(至少):

>“外”序列(注释)(这是隐含的第一个参数)
>“内”序列(CommentSource)
>如何从一个注释源获得一个关键
>如何从评论获取关键字
>您希望将结果作为CommentSource / Comment对

例如:

query = query.Join(ctx.DataContext.CommentSource,comment => comment.CommentSourceId,commentSource => commentSource.Id,(comment,commentSource) 
                      => new { Comment=comment,CommentSource=commentSource });
原文链接:https://www.f2er.com/mssql/76123.html

猜你在找的MsSQL相关文章