Skip to content

Commit b4c3d22

Browse files
committed
Bumping more packages to .net 9.0.7
1 parent cf6d43d commit b4c3d22

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

Directory.Packages.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup Label="Common Versions">
3-
<EFCoreVersion>[9.0.5,9.0.999]</EFCoreVersion>
3+
<EFCoreVersion>[9.0.7,9.0.999]</EFCoreVersion>
44
</PropertyGroup>
55
<ItemGroup Label="Dependencies">
66
<PackageVersion Include="Microsoft.EntityFrameworkCore.Design" Version="$(EFCoreVersion)" />
@@ -12,8 +12,8 @@
1212
<PackageVersion Include="NetTopologySuite" Version="2.5.0" />
1313
<PackageVersion Include="Newtonsoft.Json" Version="13.0.3" />
1414
<PackageVersion Include="Castle.Core" Version="5.1.1" />
15-
<PackageVersion Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="9.0.1" />
16-
<PackageVersion Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="9.0.1" />
15+
<PackageVersion Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="9.0.7" />
16+
<PackageVersion Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="9.0.7" />
1717
<PackageVersion Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.0" />
1818
<!--<PackageVersion Include="Microsoft.Bcl.HashCode" Version="1.1.1" />-->
1919
<PackageVersion Include="Microsoft.Extensions.Caching.Memory" Version="9.0.0" />

test/EFCore.MySql.FunctionalTests/Query/NorthwindSetOperationsQueryMySqlTest.cs

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -142,13 +142,15 @@ public override async Task Except_nested(bool async)
142142
await base.Except_nested(async);
143143

144144
AssertSql(
145-
@"SELECT `c`.`CustomerID`, `c`.`Address`, `c`.`City`, `c`.`CompanyName`, `c`.`ContactName`, `c`.`ContactTitle`, `c`.`Country`, `c`.`Fax`, `c`.`Phone`, `c`.`PostalCode`, `c`.`Region`
146-
FROM `Customers` AS `c`
147-
WHERE `c`.`ContactTitle` = 'Owner'
148-
EXCEPT
149-
SELECT `c0`.`CustomerID`, `c0`.`Address`, `c0`.`City`, `c0`.`CompanyName`, `c0`.`ContactName`, `c0`.`ContactTitle`, `c0`.`Country`, `c0`.`Fax`, `c0`.`Phone`, `c0`.`PostalCode`, `c0`.`Region`
150-
FROM `Customers` AS `c0`
151-
WHERE `c0`.`City` = 'México D.F.'
145+
@"(
146+
SELECT `c`.`CustomerID`, `c`.`Address`, `c`.`City`, `c`.`CompanyName`, `c`.`ContactName`, `c`.`ContactTitle`, `c`.`Country`, `c`.`Fax`, `c`.`Phone`, `c`.`PostalCode`, `c`.`Region`
147+
FROM `Customers` AS `c`
148+
WHERE `c`.`ContactTitle` = 'Owner'
149+
EXCEPT
150+
SELECT `c0`.`CustomerID`, `c0`.`Address`, `c0`.`City`, `c0`.`CompanyName`, `c0`.`ContactName`, `c0`.`ContactTitle`, `c0`.`Country`, `c0`.`Fax`, `c0`.`Phone`, `c0`.`PostalCode`, `c0`.`Region`
151+
FROM `Customers` AS `c0`
152+
WHERE `c0`.`City` = 'México D.F.'
153+
)
152154
EXCEPT
153155
SELECT `c1`.`CustomerID`, `c1`.`Address`, `c1`.`City`, `c1`.`CompanyName`, `c1`.`ContactName`, `c1`.`ContactTitle`, `c1`.`Country`, `c1`.`Fax`, `c1`.`Phone`, `c1`.`PostalCode`, `c1`.`Region`
154156
FROM `Customers` AS `c1`

0 commit comments

Comments
 (0)