Skip to content

Commit 7afd6dc

Browse files
committed
cleanup
1 parent 476429f commit 7afd6dc

File tree

81 files changed

+88
-169
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+88
-169
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ from FilterParentEntities as f
2525
left outer join
2626
FilterChildEntities as f0
2727
on f.Id = f0.ParentId
28-
order by f.Id,
29-
HasTransaction: false
28+
order by f.Id
3029
}
3130
}

src/Tests/IntegrationTests/IntegrationTests.Child_parent.verified.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ from ChildEntities as c
3636
left outer join
3737
ParentEntities as p
3838
on c.ParentId = p.Id
39-
order by c.Property,
40-
HasTransaction: false
39+
order by c.Property
4140
}
4241
}

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ from ChildEntities as c
3333
left outer join
3434
ParentEntities as p
3535
on c.ParentId = p.Id
36-
order by c.Property,
37-
HasTransaction: false
36+
order by c.Property
3837
}
3938
}

src/Tests/IntegrationTests/IntegrationTests.Connection_first_page.verified.txt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@
3333
{
3434
Text:
3535
select COUNT(*)
36-
from ParentEntities as p,
37-
HasTransaction: false
36+
from ParentEntities as p
3837
},
3938
{
4039
Text:
@@ -46,8 +45,7 @@ offset @__p_0 rows fetch next @__p_1 rows only,
4645
Parameters: {
4746
@__p_0: 1,
4847
@__p_1: 2
49-
},
50-
HasTransaction: false
48+
}
5149
}
5250
]
5351
}

src/Tests/IntegrationTests/IntegrationTests.Connection_nested.verified.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@
9090
Text:
9191
select p.Id,
9292
p.Property
93-
from ParentEntities as p,
94-
HasTransaction: false
93+
from ParentEntities as p
9594
}
9695
}

src/Tests/IntegrationTests/IntegrationTests.Connection_nested_OmitQueryArguments.verified.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@
9090
Text:
9191
select p.Id,
9292
p.Property
93-
from ParentEntities as p,
94-
HasTransaction: false
93+
from ParentEntities as p
9594
}
9695
}

src/Tests/IntegrationTests/IntegrationTests.Connection_page_back.verified.txt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@
3333
{
3434
Text:
3535
select COUNT(*)
36-
from ParentEntities as p,
37-
HasTransaction: false
36+
from ParentEntities as p
3837
},
3938
{
4039
Text:
@@ -46,8 +45,7 @@ offset @__p_0 rows fetch next @__p_1 rows only,
4645
Parameters: {
4746
@__p_0: 0,
4847
@__p_1: 2
49-
},
50-
HasTransaction: false
48+
}
5149
}
5250
]
5351
}

src/Tests/IntegrationTests/IntegrationTests.CustomType.verified.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
select c.Id,
1818
c.Property
1919
from CustomTypeEntities as c
20-
order by c.Property,
21-
HasTransaction: false
20+
order by c.Property
2221
}
2322
}

src/Tests/IntegrationTests/IntegrationTests.FirstNullable_Found.verified.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
select top (1) p.Id,
1313
p.Property
1414
from ParentEntities as p
15-
where p.Id = 'Guid_1',
16-
HasTransaction: false
15+
where p.Id = 'Guid_1'
1716
}
1817
}

src/Tests/IntegrationTests/IntegrationTests.FirstNullable_NotFound.verified.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
select top (1) p.Id,
1111
p.Property
1212
from ParentEntities as p
13-
where p.Id = 'Guid_1',
14-
HasTransaction: false
13+
where p.Id = 'Guid_1'
1514
}
1615
}

0 commit comments

Comments
 (0)