12

我对我的表使用多对多关系。

有一个查询:

var query = from post in context.Posts
        from tag in post.Tags where tag.TagId == 10
        select post;

好的,它工作正常。我收到具有 id 指定标签的帖子。

我有一组标签 ID。我想获得包含我收藏中每个标签的帖子。

我尝试以下方式:

var tagIds = new int[]{1, 3, 7, 23, 56};

var query = from post in context.Posts
        from tag in post.Tags where tagIds.Contains( tag.TagId )
        select post;

它不起作用。该查询返回具有任何一个指定标签的所有帖子。

我想得到一个这样的子句,但动态地用于集合中的任何标签计数:

post.Tags.Whare(x => x.TagId = 1 && x.TagId = 3 && x.TagId = 7 && ... )
4

4 回答 4

31

您不应该将每个帖子的标签投射到外部查询中;相反,您需要使用内部查询来执行外部过滤器的检查。(在 SQL 中,我们习惯将其称为相关子查询。)

var query = 
    from post in context.Posts
    where post.Tags.All(tag => tagIds.Contains(tag.TagId))
    select post;

替代语法:

var query = 
    context.Posts.Where(post =>
        post.Tags.All(tag => 
            tagIds.Contains(tag.TagId)));

编辑:根据Slauma 的说明进行更正。下面的版本返回的帖子至少包含tagIds集合中的所有标签。

var query = 
    from post in context.Posts
    where tagIds.All(requiredId => post.Tags.Any(tag => tag.TagId == requiredId))
    select post;

替代语法:

var query = 
    context.Posts.Where(post => 
        tagIds.All(requiredId => 
            post.Tags.Any(tag =>
                tag.TagId == requiredId)));

编辑2:根据 Slauma 在上面更正。还包括另一个充分利用以下查询语法的替代方案:

// Project posts from context for which
// no Ids from tagIds are not matched
// by any tags from post
var query =
    from post in context.Posts
    where
    ( 
        // Project Ids from tagIds that are
        // not matched by any tags from post
        from requiredId in tagIds
        where
        (
            // Project tags from post that match requiredId
            from tag in post.Tags
            where tag.TagId == requiredId
            select tag
        ).Any() == false
        select requiredId 
    ).Any() == false
    select post;

我曾经在 Transact-SQL.Any() == false中模拟运算符。NOT EXISTS

于 2012-05-08T20:02:00.267 回答
4

这实际上很容易做到:

var tags = context.Posts.Where(post => post.Tags.All(tag => tagIds.Contains(tag)));
于 2012-05-08T20:01:01.293 回答
4

如果您希望标签集合仅包含您指定的集合而不包含其他集合,则另一种选择是使两个列表相交:

var query = from post in context.Posts
  let tags = post.Tags.Select(x => x.Id).ToList()
  where tags.Intersect(tagIds).Count() == tags.Length
  select post;
于 2012-05-08T20:04:52.247 回答
0

试试看Any

var query = from post in context.Posts
    from tag in post.Tags where tagIds.Any(t => t == tag.TagId )
    select post;
于 2012-05-08T20:01:04.197 回答