You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: test/EFCore.SqlServer.FunctionalTests/Query/GearsOfWarQuerySqlServerTest.cs
+2-6
Original file line number
Diff line number
Diff line change
@@ -855,9 +855,7 @@ public override async Task Select_null_propagation_works_for_multiple_navigation
855
855
856
856
AssertSql(
857
857
"""
858
-
SELECT CASE
859
-
WHEN [c].[Name] IS NOT NULL THEN [c].[Name]
860
-
END
858
+
SELECT [c].[Name]
861
859
FROM [Tags] AS [t]
862
860
LEFT JOIN [Gears] AS [g] ON [t].[GearNickName] = [g].[Nickname] AND [t].[GearSquadId] = [g].[SquadId]
863
861
LEFT JOIN [Tags] AS [t0] ON ([g].[Nickname] = [t0].[GearNickName] OR ([g].[Nickname] IS NULL AND [t0].[GearNickName] IS NULL)) AND ([g].[SquadId] = [t0].[GearSquadId] OR ([g].[SquadId] IS NULL AND [t0].[GearSquadId] IS NULL))
@@ -3057,9 +3055,7 @@ public override async Task Select_null_conditional_with_inheritance(bool async)
3057
3055
3058
3056
AssertSql(
3059
3057
"""
3060
-
SELECT CASE
3061
-
WHEN [f].[CommanderName] IS NOT NULL THEN [f].[CommanderName]
0 commit comments