1

我有两张桌子。一个用户表和一个放置某个测试结果的表。

当用户进行测试时,他的结果和他的 user_id 被放置在结果表中。如果用户从未参加过测试,那么显然他的 user_id 不会出现在结果表中。

我需要获取所有不在结果表中的用户。有没有办法在一个查询中做到这一点?(实体框架)

获取所有用户很容易。但现在我需要一种方法将其链接到结果表,以查看我想要在我的结果集中哪些用户。

(from u in entity.Users
[where not in results table..??]
select u); 
4

1 回答 1

2

完整的工作示例,使用模拟对象:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {

            var usersTakenTest = new List<string>() { "Bob", "Jim", "Angel" };
            var allUsers = new List<string> { "Bob", "Jim", "Angel", "Mike", "JimBobHouse" };

            var users = from user in allUsers
                        join userTakenTest in usersTakenTest on user equals userTakenTest into tempUsers
                        from newUsers in tempUsers.DefaultIfEmpty()
                        where string.IsNullOrEmpty(newUsers)
                        select user;

            foreach (var user in users)
            {
                Console.WriteLine("This user has not taken their test: " + user);
            }
            Console.ReadLine();
        }
    }
}

.DefaultIfEmpty() 是您所追求的 - 如果它返回一个空结果,则您在表 A 中有一个未显示在表 B 中的对象。

于 2012-06-07T09:07:28.407 回答