-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
64 changed files
with
292 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"sdk": { | ||
"version": "8.0.400" | ||
"version": "9.0.100" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
...s.FunctionalTests/ComplexArgumentsTests.ArrayOfPrimitivesArguments.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
DECLARE @__validArray_0 nvarchar(4000) = N'[1,2,3]'; | ||
|
||
SELECT [t].[Id] | ||
FROM [TestEntity] AS [t] | ||
WHERE [t].[Id] IN ( | ||
SELECT [v].[value] | ||
FROM OPENJSON(@__validArray_0) WITH ([value] int '$') AS [v] | ||
) |
8 changes: 8 additions & 0 deletions
8
...es.FunctionalTests/ComplexArgumentsTests.ListOfPrimitivesArguments.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
DECLARE @__validList_0 nvarchar(4000) = N'[1,2,3]'; | ||
|
||
SELECT [t].[Id] | ||
FROM [TestEntity] AS [t] | ||
WHERE [t].[Id] IN ( | ||
SELECT [v].[value] | ||
FROM OPENJSON(@__validList_0) WITH ([value] int '$') AS [v] | ||
) |
3 changes: 3 additions & 0 deletions
3
....FunctionalTests/ComplexArgumentsTests.ParamsOfPrimitivesArguments.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
SELECT [t].[Id] | ||
FROM [TestEntity] AS [t] | ||
WHERE [t].[Id] IN (1, 2, 3) |
10 changes: 10 additions & 0 deletions
10
...nalTests/ComplexModelTests.ProjectOverCollectionNavigationProperty.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
SELECT [o1].[RecordDate] | ||
FROM [User] AS [u] | ||
INNER JOIN ( | ||
SELECT [o0].[RecordDate], [o0].[UserId] | ||
FROM ( | ||
SELECT [o].[RecordDate], [o].[UserId], ROW_NUMBER() OVER(PARTITION BY [o].[UserId] ORDER BY [o].[RecordDate] DESC) AS [row] | ||
FROM [Order] AS [o] | ||
) AS [o0] | ||
WHERE [o0].[row] <= 2 | ||
) AS [o1] ON [u].[Id] = [o1].[UserId] |
10 changes: 10 additions & 0 deletions
10
...FunctionalTests/ComplexModelTests.ProjectOverMethodTakingDbContext.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
SELECT [o1].[Id], [o1].[RecordDate], [o1].[UserId] | ||
FROM [User] AS [u] | ||
LEFT JOIN ( | ||
SELECT [o0].[Id], [o0].[RecordDate], [o0].[UserId] | ||
FROM ( | ||
SELECT [o].[Id], [o].[RecordDate], [o].[UserId], ROW_NUMBER() OVER(PARTITION BY [o].[UserId] ORDER BY [o].[RecordDate] DESC) AS [row] | ||
FROM [Order] AS [o] | ||
) AS [o0] | ||
WHERE [o0].[row] <= 1 | ||
) AS [o1] ON [u].[Id] = [o1].[UserId] |
6 changes: 6 additions & 0 deletions
6
...es.FunctionalTests/ComplexModelTests.ProjectOverNavigationProperty.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
SELECT ( | ||
SELECT TOP(1) [o].[RecordDate] | ||
FROM [Order] AS [o] | ||
WHERE [u].[Id] = [o].[UserId] | ||
ORDER BY [o].[RecordDate] DESC) | ||
FROM [User] AS [u] |
2 changes: 2 additions & 0 deletions
2
....FunctionalTests/DefaultValueTests.ExplicitDefaultValueIsSupported.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
SELECT [e].[Id] + 2 | ||
FROM [Entity] AS [e] |
1 change: 1 addition & 0 deletions
1
...Core.Projectables.FunctionalTests/EntityFrameworkCore.Projectables.FunctionalTests.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
...ionsMethods/ExtensionMethodTests.ExtensionMethodAcceptingDbContext.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
SELECT [e1].[Id] | ||
FROM [Entity] AS [e] | ||
OUTER APPLY ( | ||
SELECT TOP(1) [e0].[Id] | ||
FROM [Entity] AS [e0] | ||
WHERE [e0].[Id] > [e].[Id] | ||
) AS [e1] |
2 changes: 2 additions & 0 deletions
2
...lTests/ExtensionsMethods/ExtensionMethodTests.ExtensionOnPrimitive.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
SELECT [e].[Id] * [e].[Id] | ||
FROM [Entity] AS [e] |
2 changes: 2 additions & 0 deletions
2
...sionsMethods/ExtensionMethodTests.SelectProjectableExtensionMethod.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
SELECT [e].[Id] + 1 | ||
FROM [Entity] AS [e] |
2 changes: 2 additions & 0 deletions
2
...ionsMethods/ExtensionMethodTests.SelectProjectableExtensionMethod2.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
SELECT [e].[Id] + 1 + 1 | ||
FROM [Entity] AS [e] |
5 changes: 5 additions & 0 deletions
5
...s/GenericEntityTests.HasMatchingStringKeyConversion_GetsTranslated.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
DECLARE @__key_0 varchar(11) = 'x'; | ||
|
||
SELECT [c].[Id] | ||
FROM [ConcreteEntity] AS [c] | ||
WHERE CONVERT(varchar(11), [c].[Id]) = @__key_0 |
5 changes: 5 additions & 0 deletions
5
...unctionalTests/Generics/GenericFunctionTests.DefaultIfIdIsNegative.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
SELECT CASE | ||
WHEN [e].[Id] >= 0 THEN CAST(1 AS bit) | ||
ELSE CAST(0 AS bit) | ||
END, [e].[Id], [e].[Name] | ||
FROM [Entity] AS [e] |
2 changes: 2 additions & 0 deletions
2
...nctionalTests/Generics/MultipleGenericsTests.TestMultipleArguments.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
SELECT CAST(1 AS bit), [e].[Id], [e].[Name] | ||
FROM [Entity] AS [e] |
2 changes: 2 additions & 0 deletions
2
...tionalTests/InheritedMembersTests.ProjectOverMethodTakingDbContext.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
SELECT CAST([c].[Age] AS float) / [c].[AverageLifespan] AS [LifeProgression], CAST([c].[MentalAge] AS float) / [c].[AverageLifespan] AS [MentalLifeProgression] | ||
FROM [Cat] AS [c] |
2 changes: 2 additions & 0 deletions
2
...les.FunctionalTests/InheritedModelTests.ProjectOverExtensionMethod.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
SELECT 4 | ||
FROM [Concrete] AS [c] |
2 changes: 2 additions & 0 deletions
2
...s.FunctionalTests/InheritedModelTests.ProjectOverImplementedMethod.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
SELECT 2 | ||
FROM [Concrete] AS [c] |
2 changes: 2 additions & 0 deletions
2
...FunctionalTests/InheritedModelTests.ProjectOverImplementedProperty.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
SELECT 2 | ||
FROM [Concrete] AS [c] |
2 changes: 2 additions & 0 deletions
2
...Tests/InheritedModelTests.ProjectOverInheritedMethodImplementation.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
SELECT 2 | ||
FROM [MoreConcrete] AS [m] |
2 changes: 2 additions & 0 deletions
2
...sts/InheritedModelTests.ProjectOverInheritedPropertyImplementation.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
SELECT 2 | ||
FROM [MoreConcrete] AS [m] |
2 changes: 2 additions & 0 deletions
2
...ests/InheritedModelTests.ProjectOverOverriddenMethodImplementation.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
SELECT 2 | ||
FROM [Concrete] AS [c] |
2 changes: 2 additions & 0 deletions
2
...ts/InheritedModelTests.ProjectOverOverriddenPropertyImplementation.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
SELECT 2 | ||
FROM [Concrete] AS [c] |
3 changes: 3 additions & 0 deletions
3
...ojectables.FunctionalTests/InheritedModelTests.ProjectOverProvider.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
SELECT [c].[Id] | ||
FROM [BaseProvider] AS [b] | ||
INNER JOIN [Concrete] AS [c] ON [b].[Id] = [c].[BaseProviderId] |
4 changes: 4 additions & 0 deletions
4
...ojectables.FunctionalTests/MethodGroupTests.ProjectOverMethodGroup.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
SELECT [e].[Id], [e0].[Id] + 1, [e0].[Id] | ||
FROM [Entity] AS [e] | ||
LEFT JOIN [Entity] AS [e0] ON [e].[Id] = [e0].[EntityId] | ||
ORDER BY [e].[Id] |
15 changes: 15 additions & 0 deletions
15
tests/EntityFrameworkCore.Projectables.FunctionalTests/ModuleInitializer.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using System.Runtime.CompilerServices; | ||
|
||
namespace EntityFrameworkCore.Projectables.FunctionalTests | ||
{ | ||
public static class ModuleInitializer | ||
{ | ||
[ModuleInitializer] | ||
public static void Initialize() | ||
{ | ||
#if !NET8_0 | ||
VerifierSettings.UniqueForTargetFrameworkAndVersion(); | ||
#endif | ||
} | ||
} | ||
} |
2 changes: 2 additions & 0 deletions
2
...ojectables.FunctionalTests/NameSyntaxTests.QualifiedNameSyntaxTest.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
SELECT 7 | ||
FROM [Entity] AS [e] |
2 changes: 2 additions & 0 deletions
2
...itionals/IngoreNullConditionalRewriteTests.ComplexMemberExpression.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
SELECT CAST(LEN([e].[Name]) AS int) | ||
FROM [Entity] AS [e] |
10 changes: 10 additions & 0 deletions
10
...onditionals/IngoreNullConditionalRewriteTests.RelationalExpression.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
SELECT [e2].[Id], [e2].[EntityId], [e2].[Name] | ||
FROM [Entity] AS [e] | ||
LEFT JOIN ( | ||
SELECT [e1].[Id], [e1].[EntityId], [e1].[Name] | ||
FROM ( | ||
SELECT [e0].[Id], [e0].[EntityId], [e0].[Name], ROW_NUMBER() OVER(PARTITION BY [e0].[EntityId] ORDER BY [e0].[Id]) AS [row] | ||
FROM [Entity] AS [e0] | ||
) AS [e1] | ||
WHERE 0 < [e1].[row] AND [e1].[row] <= 1 | ||
) AS [e2] ON [e].[Id] = [e2].[EntityId] |
2 changes: 2 additions & 0 deletions
2
...ditionals/IngoreNullConditionalRewriteTests.SimpleMemberExpression.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
SELECT [e].[Name] | ||
FROM [Entity] AS [e] |
2 changes: 2 additions & 0 deletions
2
...tionals/RewriteNullConditionalRewriteTests.ComplexMemberExpression.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
SELECT CAST(LEN([e].[Name]) AS int) | ||
FROM [Entity] AS [e] |
12 changes: 12 additions & 0 deletions
12
...nditionals/RewriteNullConditionalRewriteTests.RelationalExpression.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
SELECT CAST(1 AS bit), [e].[Id], [e0].[Id], [e0].[EntityId], [e0].[Name], [e3].[Id], [e3].[EntityId], [e3].[Name] | ||
FROM [Entity] AS [e] | ||
LEFT JOIN [Entity] AS [e0] ON [e].[Id] = [e0].[EntityId] | ||
LEFT JOIN ( | ||
SELECT [e2].[Id], [e2].[EntityId], [e2].[Name] | ||
FROM ( | ||
SELECT [e1].[Id], [e1].[EntityId], [e1].[Name], ROW_NUMBER() OVER(PARTITION BY [e1].[EntityId] ORDER BY [e1].[Id]) AS [row] | ||
FROM [Entity] AS [e1] | ||
) AS [e2] | ||
WHERE 0 < [e2].[row] AND [e2].[row] <= 1 | ||
) AS [e3] ON [e].[Id] = [e3].[EntityId] | ||
ORDER BY [e].[Id] |
2 changes: 2 additions & 0 deletions
2
...itionals/RewriteNullConditionalRewriteTests.SimpleMemberExpression.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
SELECT [e].[Name] | ||
FROM [Entity] AS [e] |
2 changes: 2 additions & 0 deletions
2
...Core.Projectables.FunctionalTests/PrivateProjectables.Issue63Repro.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
SELECT [e].[Id] | ||
FROM [Entity] AS [e] |
6 changes: 6 additions & 0 deletions
6
...tables.FunctionalTests/QueryRootTests.EntityRootSubqueryExpression.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
SELECT [e].[Id], ( | ||
SELECT COUNT(*) | ||
FROM [Entity] AS [e0] | ||
WHERE [e0].[Id] * 5 = 5) AS [TotalCount] | ||
FROM [Entity] AS [e] | ||
WHERE [e].[Id] * 5 = 5 |
6 changes: 6 additions & 0 deletions
6
...ore.Projectables.FunctionalTests/QueryRootTests.EntityRootSubqueryExpression.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
SELECT [e].[Id], ( | ||
SELECT COUNT(*) | ||
FROM [Entity] AS [e0] | ||
WHERE [e0].[Id] * 5 = 5) AS [TotalCount] | ||
FROM [Entity] AS [e] | ||
WHERE [e].[Id] * 5 = 5 |
2 changes: 2 additions & 0 deletions
2
...unctionalTests/QueryRootTests.UseMemberPropertyQueryRootExpression.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
SELECT [e].[Id], [e].[Id] * 5 | ||
FROM [Entity] AS [e] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
...nalTests/StatefullComplexFunctionTests.FilterOnProjectableProperty.DotNet9_0.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
SELECT [e].[Id] | ||
FROM [Entity] AS [e] | ||
WHERE [e].[Id] + 1 = 2 |
Oops, something went wrong.