Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -111,36 +111,12 @@

public override async Task Delete_Where_OrderBy_Skip(bool async)
{
if (!AppConfig.ServerVersion.Supports.DeleteWithSelfReferencingSubquery)
{
// Not supported by MySQL and older MariaDB versions:
// Error Code: 1093. You can't specify target table 'o' for update in FROM clause
await Assert.ThrowsAsync<MySqlException>(
() => base.Delete_Where_OrderBy_Skip(async));

AssertSql(
"""
@p='100'

DELETE `o`
FROM `Order Details` AS `o`
WHERE EXISTS (
SELECT 1
FROM (
SELECT `o0`.`OrderID`, `o0`.`ProductID`
FROM `Order Details` AS `o0`
WHERE `o0`.`OrderID` < 10300
ORDER BY `o0`.`OrderID`
LIMIT 18446744073709551610 OFFSET @p
) AS `o1`
WHERE (`o1`.`OrderID` = `o`.`OrderID`) AND (`o1`.`ProductID` = `o`.`ProductID`))
""");
}
else
{
await base.Delete_Where_OrderBy_Skip(async);
// This query uses a derived table pattern which works on both MySQL and MariaDB.
// The derived table (AS `o1`) materializes the result, avoiding the MySQL error 1093
// "You can't specify target table for update in FROM clause"
await base.Delete_Where_OrderBy_Skip(async);

AssertSql(
AssertSql(
"""
@p='100'

Expand All @@ -157,41 +133,16 @@
) AS `o1`
WHERE (`o1`.`OrderID` = `o`.`OrderID`) AND (`o1`.`ProductID` = `o`.`ProductID`))
""");
}
}

public override async Task Delete_Where_OrderBy_Take(bool async)
{
if (!AppConfig.ServerVersion.Supports.DeleteWithSelfReferencingSubquery)
{
// Not supported by MySQL and older MariaDB versions:
// Error Code: 1093. You can't specify target table 'o' for update in FROM clause
await Assert.ThrowsAsync<MySqlException>(
() => base.Delete_Where_OrderBy_Take(async));

AssertSql(
"""
@p='100'
// This query uses a derived table pattern which works on both MySQL and MariaDB.
// The derived table (AS `o1`) materializes the result, avoiding the MySQL error 1093
// "You can't specify target table for update in FROM clause"
await base.Delete_Where_OrderBy_Take(async);

DELETE `o`
FROM `Order Details` AS `o`
WHERE EXISTS (
SELECT 1
FROM (
SELECT `o0`.`OrderID`, `o0`.`ProductID`
FROM `Order Details` AS `o0`
WHERE `o0`.`OrderID` < 10300
ORDER BY `o0`.`OrderID`
LIMIT @p
) AS `o1`
WHERE (`o1`.`OrderID` = `o`.`OrderID`) AND (`o1`.`ProductID` = `o`.`ProductID`))
""");
}
else
{
await base.Delete_Where_OrderBy_Take(async);

AssertSql(
AssertSql(
"""
@p='100'

Expand All @@ -208,41 +159,16 @@
) AS `o1`
WHERE (`o1`.`OrderID` = `o`.`OrderID`) AND (`o1`.`ProductID` = `o`.`ProductID`))
""");
}
}

public override async Task Delete_Where_OrderBy_Skip_Take(bool async)
{
if (!AppConfig.ServerVersion.Supports.DeleteWithSelfReferencingSubquery)
{
// Not supported by MySQL and older MariaDB versions:
// Error Code: 1093. You can't specify target table 'o' for update in FROM clause
await Assert.ThrowsAsync<MySqlException>(
() => base.Delete_Where_OrderBy_Skip_Take(async));

AssertSql(
"""
@p='100'
// This query uses a derived table pattern which works on both MySQL and MariaDB.
// The derived table (AS `o1`) materializes the result, avoiding the MySQL error 1093
// "You can't specify target table for update in FROM clause"
await base.Delete_Where_OrderBy_Skip_Take(async);

DELETE `o`
FROM `Order Details` AS `o`
WHERE EXISTS (
SELECT 1
FROM (
SELECT `o0`.`OrderID`, `o0`.`ProductID`
FROM `Order Details` AS `o0`
WHERE `o0`.`OrderID` < 10300
ORDER BY `o0`.`OrderID`
LIMIT @p OFFSET @p
) AS `o1`
WHERE (`o1`.`OrderID` = `o`.`OrderID`) AND (`o1`.`ProductID` = `o`.`ProductID`))
""");
}
else
{
await base.Delete_Where_OrderBy_Skip_Take(async);

AssertSql(
AssertSql(
"""
@p='100'

Expand All @@ -259,40 +185,16 @@
) AS `o1`
WHERE (`o1`.`OrderID` = `o`.`OrderID`) AND (`o1`.`ProductID` = `o`.`ProductID`))
""");
}
}

public override async Task Delete_Where_Skip(bool async)
{
if (!AppConfig.ServerVersion.Supports.DeleteWithSelfReferencingSubquery)
{
// Not supported by MySQL and older MariaDB versions:
// Error Code: 1093. You can't specify target table 'o' for update in FROM clause
await Assert.ThrowsAsync<MySqlException>(
() => base.Delete_Where_Skip(async));

AssertSql(
"""
@p='100'
// This query uses a derived table pattern which works on both MySQL and MariaDB.
// The derived table (AS `o1`) materializes the result, avoiding the MySQL error 1093
// "You can't specify target table for update in FROM clause"
await base.Delete_Where_Skip(async);

DELETE `o`
FROM `Order Details` AS `o`
WHERE EXISTS (
SELECT 1
FROM (
SELECT `o0`.`OrderID`, `o0`.`ProductID`
FROM `Order Details` AS `o0`
WHERE `o0`.`OrderID` < 10300
LIMIT 18446744073709551610 OFFSET @p
) AS `o1`
WHERE (`o1`.`OrderID` = `o`.`OrderID`) AND (`o1`.`ProductID` = `o`.`ProductID`))
""");
}
else
{
await base.Delete_Where_Skip(async);

AssertSql(
AssertSql(
"""
@p='100'

Expand All @@ -308,40 +210,16 @@
) AS `o1`
WHERE (`o1`.`OrderID` = `o`.`OrderID`) AND (`o1`.`ProductID` = `o`.`ProductID`))
""");
}
}

public override async Task Delete_Where_Take(bool async)
{
if (!AppConfig.ServerVersion.Supports.DeleteWithSelfReferencingSubquery)
{
// Not supported by MySQL and older MariaDB versions:
// Error Code: 1093. You can't specify target table 'o' for update in FROM clause
await Assert.ThrowsAsync<MySqlException>(
() => base.Delete_Where_Take(async));
// This query uses a derived table pattern which works on both MySQL and MariaDB.
// The derived table (AS `o1`) materializes the result, avoiding the MySQL error 1093
// "You can't specify target table for update in FROM clause"
await base.Delete_Where_Take(async);

AssertSql(
"""
@p='100'

DELETE `o`
FROM `Order Details` AS `o`
WHERE EXISTS (
SELECT 1
FROM (
SELECT `o0`.`OrderID`, `o0`.`ProductID`
FROM `Order Details` AS `o0`
WHERE `o0`.`OrderID` < 10300
LIMIT @p
) AS `o1`
WHERE (`o1`.`OrderID` = `o`.`OrderID`) AND (`o1`.`ProductID` = `o`.`ProductID`))
""");
}
else
{
await base.Delete_Where_Take(async);

AssertSql(
AssertSql(
"""
@p='100'

Expand All @@ -357,40 +235,16 @@
) AS `o1`
WHERE (`o1`.`OrderID` = `o`.`OrderID`) AND (`o1`.`ProductID` = `o`.`ProductID`))
""");
}
}

public override async Task Delete_Where_Skip_Take(bool async)
{
if (!AppConfig.ServerVersion.Supports.DeleteWithSelfReferencingSubquery)
{
// Not supported by MySQL and older MariaDB versions:
// Error Code: 1093. You can't specify target table 'o' for update in FROM clause
await Assert.ThrowsAsync<MySqlException>(
() => base.Delete_Where_Skip_Take(async));

AssertSql(
"""
@p='100'

DELETE `o`
FROM `Order Details` AS `o`
WHERE EXISTS (
SELECT 1
FROM (
SELECT `o0`.`OrderID`, `o0`.`ProductID`
FROM `Order Details` AS `o0`
WHERE `o0`.`OrderID` < 10300
LIMIT @p OFFSET @p
) AS `o1`
WHERE (`o1`.`OrderID` = `o`.`OrderID`) AND (`o1`.`ProductID` = `o`.`ProductID`))
""");
}
else
{
await base.Delete_Where_Skip_Take(async);
// This query uses a derived table pattern which works on both MySQL and MariaDB.
// The derived table (AS `o1`) materializes the result, avoiding the MySQL error 1093
// "You can't specify target table for update in FROM clause"
await base.Delete_Where_Skip_Take(async);

AssertSql(
AssertSql(
"""
@p='100'

Expand All @@ -406,7 +260,6 @@
) AS `o1`
WHERE (`o1`.`OrderID` = `o`.`OrderID`) AND (`o1`.`ProductID` = `o`.`ProductID`))
""");
}
}

public override async Task Delete_Where_predicate_with_GroupBy_aggregate(bool async)
Expand Down Expand Up @@ -468,41 +321,12 @@

public override async Task Delete_Where_Skip_Take_Skip_Take_causing_subquery(bool async)
{
if (!AppConfig.ServerVersion.Supports.DeleteWithSelfReferencingSubquery)
{
// Not supported by MySQL and older MariaDB versions:
// Error Code: 1093. You can't specify target table 'o' for update in FROM clause
await Assert.ThrowsAsync<MySqlException>(
() => base.Delete_Where_Skip_Take_Skip_Take_causing_subquery(async));
// This query uses a derived table pattern which works on both MySQL and MariaDB.
// The derived table (AS `o2`) materializes the result, avoiding the MySQL error 1093
// "You can't specify target table for update in FROM clause"
await base.Delete_Where_Skip_Take_Skip_Take_causing_subquery(async);

AssertSql(
"""
@p='100'
@p2='5'
@p1='20'

DELETE `o`
FROM `Order Details` AS `o`
WHERE EXISTS (
SELECT 1
FROM (
SELECT `o0`.`OrderID`, `o0`.`ProductID`
FROM (
SELECT `o1`.`OrderID`, `o1`.`ProductID`
FROM `Order Details` AS `o1`
WHERE `o1`.`OrderID` < 10300
LIMIT @p OFFSET @p
) AS `o0`
LIMIT @p2 OFFSET @p1
) AS `o2`
WHERE (`o2`.`OrderID` = `o`.`OrderID`) AND (`o2`.`ProductID` = `o`.`ProductID`))
""");
}
else
{
await base.Delete_Where_Skip_Take_Skip_Take_causing_subquery(async);

AssertSql(
AssertSql(
"""
@p='100'
@p2='5'
Expand All @@ -524,7 +348,6 @@
) AS `o2`
WHERE (`o2`.`OrderID` = `o`.`OrderID`) AND (`o2`.`ProductID` = `o`.`ProductID`))
""");
}
}

public override async Task Delete_Where_Distinct(bool async)
Expand Down Expand Up @@ -587,7 +410,7 @@

public override async Task Delete_Where_using_navigation_2(bool async)
{
await base.Delete_Where_using_navigation_2(async);

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: True)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: False)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: True)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: False)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: True)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: False)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: True)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: False)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: True)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: False)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: True)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: False)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: True)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: False)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: True)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: False)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: True)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: False)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (8.0.40-mysql, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: True)

MySqlConnector.MySqlException : You can't specify target table 'o' for update in FROM clause

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (8.0.40-mysql, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: False)

MySqlConnector.MySqlException : You can't specify target table 'o' for update in FROM clause

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (8.4.3-mysql, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: True)

MySqlConnector.MySqlException : You can't specify target table 'o' for update in FROM clause

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (8.4.3-mysql, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: False)

MySqlConnector.MySqlException : You can't specify target table 'o' for update in FROM clause

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (8.0.40-mysql, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: True)

MySqlConnector.MySqlException : You can't specify target table 'o' for update in FROM clause

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (8.0.40-mysql, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: False)

MySqlConnector.MySqlException : You can't specify target table 'o' for update in FROM clause

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (8.0.40-mysql, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: True)

MySqlConnector.MySqlException : You can't specify target table 'o' for update in FROM clause

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (8.0.40-mysql, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: False)

MySqlConnector.MySqlException : You can't specify target table 'o' for update in FROM clause

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: True)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: False)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (8.4.3-mysql, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: True)

MySqlConnector.MySqlException : You can't specify target table 'o' for update in FROM clause

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (8.4.3-mysql, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: False)

MySqlConnector.MySqlException : You can't specify target table 'o' for update in FROM clause

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (8.4.3-mysql, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: True)

MySqlConnector.MySqlException : You can't specify target table 'o' for update in FROM clause

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (8.4.3-mysql, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: False)

MySqlConnector.MySqlException : You can't specify target table 'o' for update in FROM clause

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: True)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: False)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: True)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: False)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: True)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: False)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: True)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: False)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: True)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: False)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: True)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: False)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (8.4.3-mysql, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: True)

MySqlConnector.MySqlException : You can't specify target table 'o' for update in FROM clause

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (8.4.3-mysql, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: False)

MySqlConnector.MySqlException : You can't specify target table 'o' for update in FROM clause

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (8.4.3-mysql, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: True)

MySqlConnector.MySqlException : You can't specify target table 'o' for update in FROM clause

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (8.4.3-mysql, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: False)

MySqlConnector.MySqlException : You can't specify target table 'o' for update in FROM clause

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (8.0.40-mysql, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: True)

MySqlConnector.MySqlException : You can't specify target table 'o' for update in FROM clause

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (8.0.40-mysql, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: False)

MySqlConnector.MySqlException : You can't specify target table 'o' for update in FROM clause

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (8.0.40-mysql, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: True)

MySqlConnector.MySqlException : You can't specify target table 'o' for update in FROM clause

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (8.0.40-mysql, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: False)

MySqlConnector.MySqlException : You can't specify target table 'o' for update in FROM clause

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (8.4.3-mysql, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: True)

MySqlConnector.MySqlException : You can't specify target table 'o' for update in FROM clause

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (8.4.3-mysql, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: False)

MySqlConnector.MySqlException : You can't specify target table 'o' for update in FROM clause

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: True)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: False)

MySqlConnector.MySqlException : Table 'o' is specified twice, both as a target for 'DELETE' and as a separate source for data

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (8.0.40-mysql, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: True)

MySqlConnector.MySqlException : You can't specify target table 'o' for update in FROM clause

Check failure on line 413 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (8.0.40-mysql, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_Where_using_navigation_2(async: False)

MySqlConnector.MySqlException : You can't specify target table 'o' for update in FROM clause
AssertSql(
"""
DELETE `o`
Expand Down Expand Up @@ -910,7 +733,7 @@
{
// Not supported by MySQL and older MariaDB versions:
// Error Code: 1093. You can't specify target table 'o' for update in FROM clause
await Assert.ThrowsAsync<MySqlException>(

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 736 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_cross_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'CROSS APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.
() => base.Delete_with_cross_apply(async));
}
}
Expand Down Expand Up @@ -939,7 +762,7 @@
{
// Not supported by MySQL and older MariaDB versions:
// Error Code: 1093. You can't specify target table 'o' for update in FROM clause
await Assert.ThrowsAsync<MySqlException>(

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, ubuntu-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.6.20-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.5.27-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: True)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.

Check failure on line 765 in test/EFCore.MySql.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesMySqlTest.cs

View workflow job for this annotation

GitHub Actions / BuildAndTest (10.11.10-mariadb, windows-latest)

Pomelo.EntityFrameworkCore.MySql.FunctionalTests.BulkUpdates.NorthwindBulkUpdatesMySqlTest.Delete_with_outer_apply(async: False)

Assert.Throws() Failure: Exception type was not an exact match Expected: typeof(MySqlConnector.MySqlException) Actual: typeof(System.InvalidOperationException) ---- System.InvalidOperationException : The LINQ expression 'OUTER APPLY ( SELECT 1 FROM Orders AS o2 WHERE o2.OrderID < o0.OrderID ORDER BY o2.OrderID ASC OFFSET 0 ROWS FETCH NEXT 100 ROWS ONLY ) AS o1' could not be translated. Either rewrite the query in a form that can be translated, or switch to client evaluation explicitly by inserting a call to 'AsEnumerable', 'AsAsyncEnumerable', 'ToList', or 'ToListAsync'. See https://go.microsoft.com/fwlink/?linkid=2101038 for more information.
() => base.Delete_with_outer_apply(async));
}
}
Expand Down
Loading