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/DapperTests/IntegrationTests/QueryStrings/FilterTests.cs
-5Lines changed: 0 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -78,7 +78,6 @@ SELECT COUNT(*)
78
78
FROM "Tags" AS t1
79
79
LEFT JOIN "RgbColors" AS t2 ON t1."Id" = t2."TagId"
80
80
WHERE t2."Id" = @p1
81
-
ORDER BY t1."Id"
82
81
"""));
83
82
84
83
command.Parameters.Should().HaveCount(1);
@@ -144,7 +143,6 @@ SELECT COUNT(*)
144
143
FROM "Tags" AS t1
145
144
LEFT JOIN "RgbColors" AS t2 ON t1."Id" = t2."TagId"
146
145
WHERE t2."Id" IN (@p1, @p2)
147
-
ORDER BY t1."Id"
148
146
"""));
149
147
150
148
command.Parameters.Should().HaveCount(2);
@@ -662,7 +660,6 @@ SELECT COUNT(*)
662
660
SELECT t1."Id", t1."FirstName", t1."LastName"
663
661
FROM "People" AS t1
664
662
WHERE (NOT (t1."FirstName" = @p1)) OR (t1."FirstName" IS NULL)
665
-
ORDER BY t1."Id"
666
663
"""));
667
664
668
665
command.Parameters.Should().HaveCount(1);
@@ -867,7 +864,6 @@ SELECT COUNT(*)
867
864
SELECT t1."Id", t1."Name"
868
865
FROM "Tags" AS t1
869
866
WHERE (t1."Name" LIKE '%A\%%' ESCAPE '\') OR (t1."Name" LIKE '%A\_%' ESCAPE '\') OR (t1."Name" LIKE '%A\\%' ESCAPE '\') OR (t1."Name" LIKE '%A''%') OR (t1."Name" LIKE '%\%\_\\''%' ESCAPE '\')
870
-
ORDER BY t1."Id"
871
867
"""));
872
868
873
869
command.Parameters.Should().BeEmpty();
@@ -1177,7 +1173,6 @@ SELECT 1
1177
1173
LEFT JOIN "People" AS t3 ON t2."AssigneeId" = t3."Id"
1178
1174
WHERE (t1."Id" = t2."OwnerId") AND (NOT (t3."Id" IS NULL)) AND (t3."FirstName" IS NULL)
0 commit comments