gpt4 book ai didi

c# - Linq to SQL Join 在我不想要的时候允许空值

转载 作者:行者123 更新时间:2023-11-30 15:16:12 29 4
gpt4 key购买 nike

我编写了以下查询来连接几个表。 la.UserProfileId 出于某些不正当的原因可以为 null。

当我编写等效的 SQL 语句时,此时我得到了 0 条记录。

var result = (from e in _ctx.Employees
join la in _ctx.LoginAudits on e.UserProfile.Id equals la.UserProfileId.Value
where la.LoginDate >= fromDate
&& e.Client.Id == clientID
select new
{
la.Id,
employeeID = e.Id,
e.Client.DisplayName,
la.UserProfileId
}).ToList();

上面的 LINQ 代码生成下面的 SQL。

exec sp_executesql N'SELECT 
1 AS [C1],
[Extent2].[Id] AS [Id],
[Extent1].[Id] AS [Id1],
[Extent3].[DisplayName] AS [DisplayName],
[Extent2].[UserProfileId] AS [UserProfileId]
FROM [dbo].[Employees] AS [Extent1]
INNER JOIN [dbo].[LoginAudits] AS [Extent2] ON ([Extent1].[UserProfile_Id] = [Extent2].[UserProfileId]) OR (([Extent1].[UserProfile_Id] IS NULL) AND ([Extent2].[UserProfileId] IS NULL))
INNER JOIN [dbo].[Clients] AS [Extent3] ON [Extent1].[Client_Id] = [Extent3].[Id]
WHERE ([Extent2].[LoginDate] >= @p__linq__0) AND ([Extent1].[Client_Id] = @p__linq__1)',N'@p__linq__0 datetime2(7),@p__linq__1 bigint',@p__linq__0='2018-02-09 11:11:29.1047249',@p__linq__1=37

如您所见,它包括“OR (([Extent1].[UserProfile_Id] IS NULL) AND ([Extent2].[UserProfileId] IS NULL))”

这与我想要的完全相反。我如何让它执行正常的内部联接而不尝试允许空值?

我可以通过在我的 WHERE 子句中添加 && la.UserProfileId != null 来解决这个问题,但理想情况下我宁愿让 JOIN 表现得像正常的 INNER JOIN 而不是试图预测我不要求的东西.

最佳答案

That is the exact opposite of what I want. How do I make it do a normal inner join and not try to allow for null values?

背后的原因是,在 C# 中,null == null 的计算结果为 true,而在 SQL 中,它的计算结果为 NULL(基本上是像 FALSE 一样处理)。因此,EF 正在尝试模拟 C# 行为,以便获得与您在 LINQ to Objects 中运行相同查询相同的结果。

这是默认的 EF6 行为。它由 UseDatabaseNullSemantics 控制属性,所以如果你想使用 SQL 行为,你应该在你的 DbContext 派生类构造函数中或从外部将它设置为 true:

[dbContext.]Configuration.UseDatabaseNullSemantics = true;

但这还不够。它会影响所有比较运算符,但他们忘记将其应用于联接。解决方案是不使用 LINQ join 运算符,而是关联 where(EF 足够聪明,可以将其转换为 SQL JOIN)。

因此除了将 UseDatabaseNullSemantics 设置为 true 之外,替换

join la in _ctx.LoginAudits on e.UserProfile.Id equals la.UserProfileId

from la in _ctx.LoginAudits where e.UserProfile.Id == la.UserProfileId

然后您将获得所需的INNER JOIN

关于c# - Linq to SQL Join 在我不想要的时候允许空值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50277607/

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