Skip to content

Commit 1de6dcc

Browse files
committed
refs
1 parent 93581fc commit 1de6dcc

4 files changed

+12
-12
lines changed

src/Tests/IntegrationTests/IntegrationTests.Child_filtered.verified.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
]
1515
}
1616
},
17-
sql: {
18-
HasTransaction: false,
17+
sqlCommand: {
1918
Text:
2019
SELECT [f].[Id], [f].[Property], [f0].[Id], [f0].[ParentId], [f0].[Property]
2120
FROM [FilterParentEntities] AS [f]
2221
LEFT JOIN [FilterChildEntities] AS [f0] ON [f].[Id] = [f0].[ParentId]
23-
ORDER BY [f].[Id]
22+
ORDER BY [f].[Id],
23+
HasTransaction: false
2424
}
2525
}

src/Tests/IntegrationTests/IntegrationTests.Child_parent_with_alias.verified.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
]
2222
}
2323
},
24-
sql: {
25-
HasTransaction: false,
24+
sqlCommand: {
2625
Text:
2726
SELECT [c].[Id], [c].[Nullable], [c].[ParentId], [c].[Property], [p].[Id], [p].[Property]
2827
FROM [ChildEntities] AS [c]
2928
LEFT JOIN [ParentEntities] AS [p] ON [c].[ParentId] = [p].[Id]
30-
ORDER BY [c].[Property]
29+
ORDER BY [c].[Property],
30+
HasTransaction: false
3131
}
3232
}

src/Tests/IntegrationTests/IntegrationTests.ManyToManyLeftWhereAndInclude_notEqual.verified.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@
2525
]
2626
}
2727
},
28-
sql: {
29-
HasTransaction: false,
28+
sqlCommand: {
3029
Text:
3130
SELECT [m].[Id], [m].[RightName], [t].[ManyToManyLeftEntityId], [t].[ManyToManyRightEntityId], [t].[Id], [t].[LeftName]
3231
FROM [ManyToManyRightEntities] AS [m]
@@ -40,6 +39,7 @@ WHERE EXISTS (
4039
FROM [ManyToManyMiddleEntities] AS [m0]
4140
INNER JOIN [ManyToManyLeftEntities] AS [m1] ON [m0].[ManyToManyLeftEntityId] = [m1].[Id]
4241
WHERE [m].[Id] = [m0].[ManyToManyRightEntityId] AND ([m1].[LeftName] <> N'Left2' OR [m1].[LeftName] IS NULL))
43-
ORDER BY [m].[Id], [t].[ManyToManyLeftEntityId], [t].[ManyToManyRightEntityId]
42+
ORDER BY [m].[Id], [t].[ManyToManyLeftEntityId], [t].[ManyToManyRightEntityId],
43+
HasTransaction: false
4444
}
4545
}

src/Tests/IntegrationTests/IntegrationTests.Where_multiple.verified.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
]
1010
}
1111
},
12-
sql: {
13-
HasTransaction: false,
12+
sqlCommand: {
1413
Text:
1514
SELECT [p].[Id], [p].[Property]
1615
FROM [ParentEntities] AS [p]
17-
WHERE [p].[Property] IS NOT NULL AND [p].[Property] LIKE N'Valu%' AND [p].[Property] LIKE N'%ue3'
16+
WHERE [p].[Property] IS NOT NULL AND [p].[Property] LIKE N'Valu%' AND [p].[Property] LIKE N'%ue3',
17+
HasTransaction: false
1818
}
1919
}

0 commit comments

Comments
 (0)