Skip to content

Commit fc07b9b

Browse files
committed
update tests
1 parent 20897e3 commit fc07b9b

File tree

40 files changed

+94
-3106
lines changed

40 files changed

+94
-3106
lines changed

test/EFCore.Jet.FunctionalTests/Query/GearsOfWarQueryJetTest.cs

Lines changed: 35 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -580,8 +580,9 @@ public override async Task Null_propagation_optimization1(bool isAsync)
580580

581581
AssertSql(
582582
"""
583-
SELECT `w`.`Id`, IIF(NOT (`w`.`IsAutomatic`), IIF(`w`.`AmmunitionType` = 1, 'ManualCartridge', 'Manual'), 'Auto') AS `IsManualCartridge`
584-
FROM `Weapons` AS `w`
583+
SELECT `g`.`Nickname`, `g`.`SquadId`, `g`.`AssignedCityName`, `g`.`CityOfBirthName`, `g`.`Discriminator`, `g`.`FullName`, `g`.`HasSoulPatch`, `g`.`LeaderNickname`, `g`.`LeaderSquadId`, `g`.`Rank`
584+
FROM `Gears` AS `g`
585+
WHERE `g`.`LeaderNickname` = 'Marcus'
585586
""");
586587
}
587588

@@ -688,8 +689,9 @@ public override async Task Select_null_propagation_negative2(bool isAsync)
688689

689690
AssertSql(
690691
"""
691-
SELECT IIF(`g`.`LeaderNickname` IS NOT NULL, IIF(LEN(`g`.`Nickname`) IS NULL, NULL, CLNG(LEN(`g`.`Nickname`))) = 5, NULL)
692-
FROM `Gears` AS `g`
692+
SELECT IIF(`g`.`LeaderNickname` IS NOT NULL, `g0`.`LeaderNickname`, NULL)
693+
FROM `Gears` AS `g`,
694+
`Gears` AS `g0`
693695
""");
694696
}
695697

@@ -853,9 +855,10 @@ public override async Task Where_conditional_equality_1(bool async)
853855
await base.Where_conditional_equality_1(async);
854856

855857
AssertSql(
856-
"""
857-
SELECT `g`.`LeaderNickname` IS NOT NULL, `g`.`Nickname`, `g`.`FullName`
858+
"""
859+
SELECT `g`.`Nickname`
858860
FROM `Gears` AS `g`
861+
WHERE `g`.`LeaderNickname` IS NULL
859862
ORDER BY `g`.`Nickname`
860863
""");
861864
}
@@ -1754,14 +1757,13 @@ public override async Task Non_unicode_string_literals_is_used_for_non_unicode_c
17541757
await base.Non_unicode_string_literals_is_used_for_non_unicode_column_with_subquery(isAsync);
17551758

17561759
AssertSql(
1757-
"""
1758-
@cities1='Unknown' (Size = 100)
1759-
@cities2='Jacinto's location' (Size = 100)
1760-
@cities3='Ephyra's location' (Size = 100)
1761-
1760+
"""
17621761
SELECT `c`.`Name`, `c`.`Location`, `c`.`Nation`
17631762
FROM `Cities` AS `c`
1764-
WHERE `c`.`Location` IN (@cities1, @cities2, @cities3)
1763+
WHERE `c`.`Location` = 'Unknown' AND (
1764+
SELECT COUNT(*)
1765+
FROM `Gears` AS `g`
1766+
WHERE `c`.`Name` = `g`.`CityOfBirthName` AND `g`.`Nickname` = 'Paduk') = 1
17651767
""");
17661768
}
17671769

@@ -2059,10 +2061,11 @@ public override async Task Optional_navigation_type_compensation_works_with_proj
20592061
await base.Optional_navigation_type_compensation_works_with_projection(isAsync);
20602062

20612063
AssertSql(
2062-
"""
2063-
SELECT `g`.`HasSoulPatch` AND (`t`.`Note` LIKE '%Cole%') AND `t`.`Note` IS NOT NULL
2064+
"""
2065+
SELECT `g`.`SquadId`
20642066
FROM `Tags` AS `t`
20652067
LEFT JOIN `Gears` AS `g` ON `t`.`GearNickName` = `g`.`Nickname` AND `t`.`GearSquadId` = `g`.`SquadId`
2068+
WHERE `t`.`Note` <> 'K.I.A.' OR `t`.`Note` IS NULL
20662069
""");
20672070
}
20682071

@@ -4615,10 +4618,11 @@ public override async Task Order_by_entity_qsre(bool isAsync)
46154618
await base.Order_by_entity_qsre(isAsync);
46164619

46174620
AssertSql(
4618-
"""
4619-
SELECT NOT (IIF(`g`.`HasSoulPatch`, TRUE, IIF(`g`.`HasSoulPatch` IS NULL, TRUE, `g`.`HasSoulPatch`))) AS `c`
4620-
FROM `Tags` AS `t`
4621-
LEFT JOIN `Gears` AS `g` ON `t`.`GearNickName` = `g`.`Nickname` AND `t`.`GearSquadId` = `g`.`SquadId`
4621+
"""
4622+
SELECT `g`.`FullName`
4623+
FROM `Gears` AS `g`
4624+
LEFT JOIN `Cities` AS `c` ON `g`.`AssignedCityName` = `c`.`Name`
4625+
ORDER BY `c`.`Name`, `g`.`Nickname` DESC
46224626
""");
46234627
}
46244628

@@ -6112,10 +6116,10 @@ public override async Task Left_join_projection_using_coalesce_tracking(bool isA
61126116
await base.Left_join_projection_using_coalesce_tracking(isAsync);
61136117

61146118
AssertSql(
6115-
"""
6116-
SELECT `w`.`SynergyWithId` IS NOT NULL, `w0`.`OwnerFullName`
6117-
FROM `Weapons` AS `w`
6118-
LEFT JOIN `Weapons` AS `w0` ON `w`.`SynergyWithId` = `w0`.`Id`
6119+
"""
6120+
SELECT `g0`.`Nickname`, `g0`.`SquadId`, `g0`.`AssignedCityName`, `g0`.`CityOfBirthName`, `g0`.`Discriminator`, `g0`.`FullName`, `g0`.`HasSoulPatch`, `g0`.`LeaderNickname`, `g0`.`LeaderSquadId`, `g0`.`Rank`, `g`.`Nickname`, `g`.`SquadId`, `g`.`AssignedCityName`, `g`.`CityOfBirthName`, `g`.`Discriminator`, `g`.`FullName`, `g`.`HasSoulPatch`, `g`.`LeaderNickname`, `g`.`LeaderSquadId`, `g`.`Rank`
6121+
FROM `Gears` AS `g`
6122+
LEFT JOIN `Gears` AS `g0` ON `g`.`LeaderNickname` = `g0`.`Nickname`
61196123
""");
61206124
}
61216125

@@ -6382,8 +6386,15 @@ public override async Task OfType_in_subquery_works(bool isAsync)
63826386

63836387
AssertSql(
63846388
"""
6385-
SELECT `m`.`Timeline` > NOW()
6386-
FROM `Missions` AS `m`
6389+
SELECT `s`.`Name`, `s`.`Location`, `s`.`Nation`
6390+
FROM `Gears` AS `g`
6391+
INNER JOIN (
6392+
SELECT `c`.`Name`, `c`.`Location`, `c`.`Nation`, `g0`.`LeaderNickname`, `g0`.`LeaderSquadId`
6393+
FROM `Gears` AS `g0`
6394+
LEFT JOIN `Cities` AS `c` ON `g0`.`AssignedCityName` = `c`.`Name`
6395+
WHERE `g0`.`Discriminator` = 'Officer'
6396+
) AS `s` ON `g`.`Nickname` = `s`.`LeaderNickname` AND `g`.`SquadId` = `s`.`LeaderSquadId`
6397+
WHERE `g`.`Discriminator` = 'Officer'
63876398
""");
63886399
}
63896400

test/EFCore.Jet.FunctionalTests/Query/NorthwindSelectQueryJetTest.cs

Lines changed: 6 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1396,35 +1396,13 @@ public override async Task Select_with_multiple_Take(bool async)
13961396

13971397
AssertSql(
13981398
"""
1399-
@p0='3'
1400-
@p='5'
1401-
1402-
SELECT TOP(@p0) [c0].[CustomerID], [c0].[Address], [c0].[City], [c0].[CompanyName], [c0].[ContactName], [c0].[ContactTitle], [c0].[Country], [c0].[Fax], [c0].[Phone], [c0].[PostalCode], [c0].[Region]
1399+
SELECT TOP @p0 `c0`.`CustomerID`, `c0`.`Address`, `c0`.`City`, `c0`.`CompanyName`, `c0`.`ContactName`, `c0`.`ContactTitle`, `c0`.`Country`, `c0`.`Fax`, `c0`.`Phone`, `c0`.`PostalCode`, `c0`.`Region`
14031400
FROM (
1404-
SELECT TOP(@p) [c].[CustomerID], [c].[Address], [c].[City], [c].[CompanyName], [c].[ContactName], [c].[ContactTitle], [c].[Country], [c].[Fax], [c].[Phone], [c].[PostalCode], [c].[Region]
1405-
FROM [Customers] AS [c]
1406-
ORDER BY [c].[CustomerID]
1407-
) AS [c0]
1408-
ORDER BY [c0].[CustomerID]
1409-
""");
1410-
}
1411-
1412-
public override async Task SelectMany_with_multiple_Take(bool async)
1413-
{
1414-
await base.SelectMany_with_multiple_Take(async);
1415-
1416-
AssertSql(
1417-
"""
1418-
SELECT [o1].[OrderID], [o1].[CustomerID], [o1].[EmployeeID], [o1].[OrderDate]
1419-
FROM [Customers] AS [c]
1420-
INNER JOIN (
1421-
SELECT [o0].[OrderID], [o0].[CustomerID], [o0].[EmployeeID], [o0].[OrderDate]
1422-
FROM (
1423-
SELECT [o].[OrderID], [o].[CustomerID], [o].[EmployeeID], [o].[OrderDate], ROW_NUMBER() OVER(PARTITION BY [o].[CustomerID] ORDER BY [o].[OrderID]) AS [row]
1424-
FROM [Orders] AS [o]
1425-
) AS [o0]
1426-
WHERE [o0].[row] <= 3
1427-
) AS [o1] ON [c].[CustomerID] = [o1].[CustomerID]
1401+
SELECT TOP @p `c`.`CustomerID`, `c`.`Address`, `c`.`City`, `c`.`CompanyName`, `c`.`ContactName`, `c`.`ContactTitle`, `c`.`Country`, `c`.`Fax`, `c`.`Phone`, `c`.`PostalCode`, `c`.`Region`
1402+
FROM `Customers` AS `c`
1403+
ORDER BY `c`.`CustomerID`
1404+
) AS `c0`
1405+
ORDER BY `c0`.`CustomerID`
14281406
""");
14291407
}
14301408

@@ -1445,22 +1423,6 @@ FROM [Orders] AS [o]
14451423
""");
14461424
}*/
14471425

1448-
public override async Task Select_with_multiple_Take(bool async)
1449-
{
1450-
await base.Select_with_multiple_Take(async);
1451-
1452-
AssertSql(
1453-
"""
1454-
SELECT TOP @p0 `c0`.`CustomerID`, `c0`.`Address`, `c0`.`City`, `c0`.`CompanyName`, `c0`.`ContactName`, `c0`.`ContactTitle`, `c0`.`Country`, `c0`.`Fax`, `c0`.`Phone`, `c0`.`PostalCode`, `c0`.`Region`
1455-
FROM (
1456-
SELECT TOP @p `c`.`CustomerID`, `c`.`Address`, `c`.`City`, `c`.`CompanyName`, `c`.`ContactName`, `c`.`ContactTitle`, `c`.`Country`, `c`.`Fax`, `c`.`Phone`, `c`.`PostalCode`, `c`.`Region`
1457-
FROM `Customers` AS `c`
1458-
ORDER BY `c`.`CustomerID`
1459-
) AS `c0`
1460-
ORDER BY `c0`.`CustomerID`
1461-
""");
1462-
}
1463-
14641426
public override async Task FirstOrDefault_over_empty_collection_of_value_type_returns_correct_results(bool isAsync)
14651427
{
14661428
await base.FirstOrDefault_over_empty_collection_of_value_type_returns_correct_results(isAsync);

test/EFCore.Jet.FunctionalTests/Query/PrecompiledQueryJetTest.cs

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1390,26 +1390,6 @@ public override async Task Terminating_ExecuteUpdateAsync_with_lambda()
13901390
"""
13911391
@suffix='Suffix' (Size = 255)
13921392
1393-
UPDATE `Blogs` AS `b`
1394-
SET `b`.`Name` = IIF(`b`.`Name` IS NULL, '', `b`.`Name`) & @suffix
1395-
WHERE `b`.`Id` > 8
1396-
""",
1397-
//
1398-
"""
1399-
SELECT COUNT(*)
1400-
FROM `Blogs` AS `b`
1401-
WHERE `b`.`Id` = 9 AND `b`.`Name` = 'NewValue'
1402-
""");
1403-
}
1404-
1405-
public override async Task Terminating_ExecuteUpdateAsync_with_lambda()
1406-
{
1407-
await base.Terminating_ExecuteUpdateAsync_with_lambda();
1408-
1409-
AssertSql(
1410-
"""
1411-
@suffix='Suffix' (Size = 255)
1412-
14131393
UPDATE `Blogs` AS `b`
14141394
SET `b`.`Name` = IIF(`b`.`Name` IS NULL, '', `b`.`Name`) & @suffix
14151395
WHERE `b`.`Id` > 8

test/EFCore.Jet.FunctionalTests/Query/PrimitiveCollectionsQueryJetTest.cs

Lines changed: 0 additions & 133 deletions
Original file line numberDiff line numberDiff line change
@@ -1384,139 +1384,6 @@ SELECT 3 AS `Value`
13841384
""");
13851385
}
13861386

1387-
public override async Task Parameter_collection_of_structs_Contains_struct(bool async)
1388-
{
1389-
await base.Parameter_collection_of_structs_Contains_struct(async);
1390-
1391-
AssertSql(
1392-
"""
1393-
SELECT `p`.`Id`, `p`.`Bool`, `p`.`Bools`, `p`.`DateTime`, `p`.`DateTimes`, `p`.`Enum`, `p`.`Enums`, `p`.`Int`, `p`.`Ints`, `p`.`NullableInt`, `p`.`NullableInts`, `p`.`NullableString`, `p`.`NullableStrings`, `p`.`NullableWrappedId`, `p`.`NullableWrappedIdWithNullableComparer`, `p`.`String`, `p`.`Strings`, `p`.`WrappedId`
1394-
FROM `PrimitiveCollectionsEntity` AS `p`
1395-
WHERE `p`.`WrappedId` IN (22, 33)
1396-
""",
1397-
//
1398-
"""
1399-
SELECT `p`.`Id`, `p`.`Bool`, `p`.`Bools`, `p`.`DateTime`, `p`.`DateTimes`, `p`.`Enum`, `p`.`Enums`, `p`.`Int`, `p`.`Ints`, `p`.`NullableInt`, `p`.`NullableInts`, `p`.`NullableString`, `p`.`NullableStrings`, `p`.`NullableWrappedId`, `p`.`NullableWrappedIdWithNullableComparer`, `p`.`String`, `p`.`Strings`, `p`.`WrappedId`
1400-
FROM `PrimitiveCollectionsEntity` AS `p`
1401-
WHERE `p`.`WrappedId` NOT IN (11, 44)
1402-
""");
1403-
}
1404-
1405-
public override async Task Parameter_collection_of_structs_Contains_nullable_struct(bool async)
1406-
{
1407-
await base.Parameter_collection_of_structs_Contains_nullable_struct(async);
1408-
1409-
AssertSql(
1410-
"""
1411-
SELECT `p`.`Id`, `p`.`Bool`, `p`.`Bools`, `p`.`DateTime`, `p`.`DateTimes`, `p`.`Enum`, `p`.`Enums`, `p`.`Int`, `p`.`Ints`, `p`.`NullableInt`, `p`.`NullableInts`, `p`.`NullableString`, `p`.`NullableStrings`, `p`.`NullableWrappedId`, `p`.`NullableWrappedIdWithNullableComparer`, `p`.`String`, `p`.`Strings`, `p`.`WrappedId`
1412-
FROM `PrimitiveCollectionsEntity` AS `p`
1413-
WHERE `p`.`NullableWrappedId` IN (22, 33)
1414-
""",
1415-
//
1416-
"""
1417-
SELECT `p`.`Id`, `p`.`Bool`, `p`.`Bools`, `p`.`DateTime`, `p`.`DateTimes`, `p`.`Enum`, `p`.`Enums`, `p`.`Int`, `p`.`Ints`, `p`.`NullableInt`, `p`.`NullableInts`, `p`.`NullableString`, `p`.`NullableStrings`, `p`.`NullableWrappedId`, `p`.`NullableWrappedIdWithNullableComparer`, `p`.`String`, `p`.`Strings`, `p`.`WrappedId`
1418-
FROM `PrimitiveCollectionsEntity` AS `p`
1419-
WHERE `p`.`NullableWrappedId` NOT IN (11, 44) OR `p`.`NullableWrappedId` IS NULL
1420-
""");
1421-
}
1422-
1423-
public override async Task Parameter_collection_of_structs_Contains_nullable_struct_with_nullable_comparer(bool async)
1424-
{
1425-
await base.Parameter_collection_of_structs_Contains_nullable_struct_with_nullable_comparer(async);
1426-
1427-
AssertSql(
1428-
"""
1429-
SELECT `p`.`Id`, `p`.`Bool`, `p`.`Bools`, `p`.`DateTime`, `p`.`DateTimes`, `p`.`Enum`, `p`.`Enums`, `p`.`Int`, `p`.`Ints`, `p`.`NullableInt`, `p`.`NullableInts`, `p`.`NullableString`, `p`.`NullableStrings`, `p`.`NullableWrappedId`, `p`.`NullableWrappedIdWithNullableComparer`, `p`.`String`, `p`.`Strings`, `p`.`WrappedId`
1430-
FROM `PrimitiveCollectionsEntity` AS `p`
1431-
WHERE `p`.`NullableWrappedIdWithNullableComparer` IN (22, 33)
1432-
""",
1433-
//
1434-
"""
1435-
SELECT `p`.`Id`, `p`.`Bool`, `p`.`Bools`, `p`.`DateTime`, `p`.`DateTimes`, `p`.`Enum`, `p`.`Enums`, `p`.`Int`, `p`.`Ints`, `p`.`NullableInt`, `p`.`NullableInts`, `p`.`NullableString`, `p`.`NullableStrings`, `p`.`NullableWrappedId`, `p`.`NullableWrappedIdWithNullableComparer`, `p`.`String`, `p`.`Strings`, `p`.`WrappedId`
1436-
FROM `PrimitiveCollectionsEntity` AS `p`
1437-
WHERE `p`.`NullableWrappedId` NOT IN (11, 44) OR `p`.`NullableWrappedId` IS NULL
1438-
""");
1439-
}
1440-
1441-
public override async Task Parameter_collection_of_nullable_structs_Contains_struct(bool async)
1442-
{
1443-
await base.Parameter_collection_of_nullable_structs_Contains_struct(async);
1444-
1445-
AssertSql(
1446-
"""
1447-
SELECT `p`.`Id`, `p`.`Bool`, `p`.`Bools`, `p`.`DateTime`, `p`.`DateTimes`, `p`.`Enum`, `p`.`Enums`, `p`.`Int`, `p`.`Ints`, `p`.`NullableInt`, `p`.`NullableInts`, `p`.`NullableString`, `p`.`NullableStrings`, `p`.`NullableWrappedId`, `p`.`NullableWrappedIdWithNullableComparer`, `p`.`String`, `p`.`Strings`, `p`.`WrappedId`
1448-
FROM `PrimitiveCollectionsEntity` AS `p`
1449-
WHERE `p`.`WrappedId` = 22
1450-
""",
1451-
//
1452-
"""
1453-
SELECT `p`.`Id`, `p`.`Bool`, `p`.`Bools`, `p`.`DateTime`, `p`.`DateTimes`, `p`.`Enum`, `p`.`Enums`, `p`.`Int`, `p`.`Ints`, `p`.`NullableInt`, `p`.`NullableInts`, `p`.`NullableString`, `p`.`NullableStrings`, `p`.`NullableWrappedId`, `p`.`NullableWrappedIdWithNullableComparer`, `p`.`String`, `p`.`Strings`, `p`.`WrappedId`
1454-
FROM `PrimitiveCollectionsEntity` AS `p`
1455-
WHERE `p`.`WrappedId` NOT IN (11, 44)
1456-
""");
1457-
}
1458-
1459-
public override async Task Parameter_collection_of_nullable_structs_Contains_nullable_struct(bool async)
1460-
{
1461-
await base.Parameter_collection_of_nullable_structs_Contains_nullable_struct(async);
1462-
1463-
AssertSql(
1464-
"""
1465-
SELECT `p`.`Id`, `p`.`Bool`, `p`.`Bools`, `p`.`DateTime`, `p`.`DateTimes`, `p`.`Enum`, `p`.`Enums`, `p`.`Int`, `p`.`Ints`, `p`.`NullableInt`, `p`.`NullableInts`, `p`.`NullableString`, `p`.`NullableStrings`, `p`.`NullableWrappedId`, `p`.`NullableWrappedIdWithNullableComparer`, `p`.`String`, `p`.`Strings`, `p`.`WrappedId`
1466-
FROM `PrimitiveCollectionsEntity` AS `p`
1467-
WHERE `p`.`NullableWrappedId` IS NULL OR `p`.`NullableWrappedId` = 22
1468-
""",
1469-
//
1470-
"""
1471-
SELECT `p`.`Id`, `p`.`Bool`, `p`.`Bools`, `p`.`DateTime`, `p`.`DateTimes`, `p`.`Enum`, `p`.`Enums`, `p`.`Int`, `p`.`Ints`, `p`.`NullableInt`, `p`.`NullableInts`, `p`.`NullableString`, `p`.`NullableStrings`, `p`.`NullableWrappedId`, `p`.`NullableWrappedIdWithNullableComparer`, `p`.`String`, `p`.`Strings`, `p`.`WrappedId`
1472-
FROM `PrimitiveCollectionsEntity` AS `p`
1473-
WHERE `p`.`NullableWrappedId` NOT IN (11, 44) OR `p`.`NullableWrappedId` IS NULL
1474-
""");
1475-
}
1476-
1477-
public override async Task Parameter_collection_of_nullable_structs_Contains_nullable_struct_with_nullable_comparer(bool async)
1478-
{
1479-
await base.Parameter_collection_of_nullable_structs_Contains_nullable_struct_with_nullable_comparer(async);
1480-
1481-
AssertSql(
1482-
"""
1483-
SELECT `p`.`Id`, `p`.`Bool`, `p`.`Bools`, `p`.`DateTime`, `p`.`DateTimes`, `p`.`Enum`, `p`.`Enums`, `p`.`Int`, `p`.`Ints`, `p`.`NullableInt`, `p`.`NullableInts`, `p`.`NullableString`, `p`.`NullableStrings`, `p`.`NullableWrappedId`, `p`.`NullableWrappedIdWithNullableComparer`, `p`.`String`, `p`.`Strings`, `p`.`WrappedId`
1484-
FROM `PrimitiveCollectionsEntity` AS `p`
1485-
WHERE `p`.`NullableWrappedIdWithNullableComparer` IS NULL OR `p`.`NullableWrappedIdWithNullableComparer` = 22
1486-
""",
1487-
//
1488-
"""
1489-
SELECT `p`.`Id`, `p`.`Bool`, `p`.`Bools`, `p`.`DateTime`, `p`.`DateTimes`, `p`.`Enum`, `p`.`Enums`, `p`.`Int`, `p`.`Ints`, `p`.`NullableInt`, `p`.`NullableInts`, `p`.`NullableString`, `p`.`NullableStrings`, `p`.`NullableWrappedId`, `p`.`NullableWrappedIdWithNullableComparer`, `p`.`String`, `p`.`Strings`, `p`.`WrappedId`
1490-
FROM `PrimitiveCollectionsEntity` AS `p`
1491-
WHERE `p`.`NullableWrappedIdWithNullableComparer` NOT IN (11, 44) OR `p`.`NullableWrappedIdWithNullableComparer` IS NULL
1492-
""");
1493-
}
1494-
1495-
public override async Task Values_of_enum_casted_to_underlying_value(bool async)
1496-
{
1497-
await base.Values_of_enum_casted_to_underlying_value(async);
1498-
1499-
AssertSql(
1500-
"""
1501-
SELECT `p`.`Id`, `p`.`Bool`, `p`.`Bools`, `p`.`DateTime`, `p`.`DateTimes`, `p`.`Enum`, `p`.`Enums`, `p`.`Int`, `p`.`Ints`, `p`.`NullableInt`, `p`.`NullableInts`, `p`.`NullableString`, `p`.`NullableStrings`, `p`.`NullableWrappedId`, `p`.`NullableWrappedIdWithNullableComparer`, `p`.`String`, `p`.`Strings`, `p`.`WrappedId`
1502-
FROM `PrimitiveCollectionsEntity` AS `p`
1503-
WHERE (
1504-
SELECT COUNT(*)
1505-
FROM (SELECT CLNG(0) AS `Value`
1506-
FROM (SELECT COUNT(*) FROM `#Dual`) AS `v_0`
1507-
UNION
1508-
SELECT 1 AS `Value`
1509-
FROM (SELECT COUNT(*) FROM `#Dual`) AS `v_1`
1510-
UNION
1511-
SELECT 2 AS `Value`
1512-
FROM (SELECT COUNT(*) FROM `#Dual`) AS `v_2`
1513-
UNION
1514-
SELECT 3 AS `Value`
1515-
FROM (SELECT COUNT(*) FROM `#Dual`) AS `v_3`) AS `v`
1516-
WHERE `v`.`Value` = `p`.`Int`) > 0
1517-
""");
1518-
}
1519-
15201387
[ConditionalFact]
15211388
public virtual void Check_all_tests_overridden()
15221389
=> TestHelpers.AssertAllMethodsOverridden(GetType());

test/EFCore.Jet.FunctionalTests/Query/Relationships/ComplexRelationshipsJetFixture.cs

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)