0

我正在运行以下查询

var allroles = from l in metaData.Role select l.RoleId;
var personroles = from k in metaData.PersonRole
                  where k.PersonId == new Guid(Session["user_id"].ToString())
                  select k.RoleId;
Dictionary<Guid, string> allroleswithnames = 
    (from l in metaData.Role
     select new { l.RoleId, l.Description })
    .ToDictionary(u => u.RoleId, u => u.Description);
var avl_roles = from j in allroles.Except(personroles)
                select new
                {
                    RoleId = j,
                    Description = allroleswithnames[new Guid(j.ToString())]
                };
clist_avl_roles.DataSource = avl_roles;
clist_avl_roles.DataBind();

avl_roles 引发错误的代码处的代码

Subquery returned more than 1 value. This is not permitted when the subquery
follows =, !=, <, <= , >, >= or when the subquery is used as an expression.

实际上,具有相同人员 ID 的角色 ID 有多行。如何重写查询以处理这种情况?

4

1 回答 1

1
var personId = new Guid(Session["user_id"].ToString());
var personRoles = metaData.PersonRole
                          .Where(pr => pr.PersonId == personId)
                          .Select(pr => pr.RoleId);    

var avl_roles = from r in metaData.Role
                where !personRoles.Contains(r.RoleId)
                select new { r.RoleId, r.Description };

或在单个查询中

var avl_roles = from r in metaData.Role
                join pr in metaData.PersonRole.Where(x => x.PersonId == personId)
                     on r.RoleId equals pr.RoleId into g
                where !g.Any()
                select new { r.RoleId, r.Description };
于 2012-12-28T09:53:17.027 回答