gpt4 book ai didi

c# - 我正在尝试使用 "Not IN"将 SQL 查询转换为 Linq to Entities

转载 作者:行者123 更新时间:2023-11-30 17:39:05 24 4
gpt4 key购买 nike

我有一个 SQL 查询(存储过程),我很难尝试使用“NOT IN”在 Linq 中编写。

这是 SQL 查询:

ALTER PROCEDURE [dbo].[spGetAvailableRoles2User]
@Id nvarchar(128)
AS
BEGIN
SET NOCOUNT ON;

SELECT name
FROM Role
WHERE name NOT IN (SELECT t3.Name
FROM [User] t1
JOIN [UserRole] t2 ON t1.Id = t2.UserId
JOIN [Role] t3 ON t2.RoleId = t3.RoleId
WHERE t1.Id = @Id)
END

这是我在 MVC 操作方法中尝试做的事情

var result = (from x in db.Users
join y in db.IdentityUserRoles on x.Id equals y.UserId
join z in db.Roles on y.RoleId equals z.Id
where x.Id == id
select z.Name);

有人能解释一下我做错了什么吗?

最佳答案

假设您已经在 Entity Framework 中正确设置了关系和此类设置(并假设角色的名称是唯一的),它应该像这样简单:

from role in db.Roles
where !role.Users.Any()
select role.Name

如果您没有设置关系以便您的 Role 实体具有这样的 Users 属性,那么它会稍微复杂一些。但是,如果您的数据完整性足够好,没有相应用户的 IdentityUserRole 条目,则根本不需要涉及用户表:

from role in db.Roles
where !db.IdentityUserRoles.Any(iur => iur.Name == role.Name)
select role.Name

关于c# - 我正在尝试使用 "Not IN"将 SQL 查询转换为 Linq to Entities,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35878213/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com