Update to .Net 8 RC2

pull/151/head
Christopher Jolly 2 years ago
parent 331da3810e
commit 0ddfe1ce3b

@ -1,33 +1,33 @@
<Project>
<PropertyGroup>
<EFCoreVersion>[8.0.0-rc.1.23419.6, 9.0.0)</EFCoreVersion>
<EFCoreVersion>[8.0.0-rc.2.23480.1, 9.0.0)</EFCoreVersion>
</PropertyGroup>
<ItemGroup>
<!-- Common -->
<PackageReference Update="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="8.0.0-rc.1.23419.4" />
<PackageReference Update="Microsoft.Extensions.Configuration.Json" Version="8.0.0-rc.1.23419.4" />
<PackageReference Update="Microsoft.Extensions.Caching.Memory" Version="8.0.0-rc.1.23419.4" />
<PackageReference Update="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="8.0.0-rc.2.23479.6" />
<PackageReference Update="Microsoft.Extensions.Configuration.Json" Version="8.0.0-rc.2.23479.6" />
<PackageReference Update="Microsoft.Extensions.Caching.Memory" Version="8.0.0-rc.2.23479.6" />
<PackageReference Update="Microsoft.EntityFrameworkCore" Version="$(EFCoreVersion)" />
<PackageReference Update="Microsoft.EntityFrameworkCore.Relational" Version="$(EFCoreVersion)" />
<PackageReference Update="System.Diagnostics.DiagnosticSource" Version="8.0.0-rc.1.23419.4" />
<PackageReference Update="System.Diagnostics.DiagnosticSource" Version="8.0.0-rc.2.23479.6" />
<PackageReference Update="DotNetAnalyzers.DocumentationAnalyzers" Version="1.0.0-beta.59" />
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="1.1.1" />
<!-- EFCore.Jet -->
<PackageReference Update="Microsoft.Extensions.DependencyInjection" Version="8.0.0-rc.1.23419.4" />
<PackageReference Update="Microsoft.Extensions.Configuration" Version="8.0.0-rc.1.23419.4" />
<PackageReference Update="Microsoft.Extensions.Logging" Version="8.0.0-rc.1.23419.4" />
<PackageReference Update="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0-rc.1.23419.4" />
<PackageReference Update="Microsoft.Extensions.DependencyInjection" Version="8.0.0-rc.2.23479.6" />
<PackageReference Update="Microsoft.Extensions.Configuration" Version="8.0.0-rc.2.23479.6" />
<PackageReference Update="Microsoft.Extensions.Logging" Version="8.0.0-rc.2.23479.6" />
<PackageReference Update="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0-rc.2.23479.6" />
<PackageReference Update="Microsoft.Bcl.HashCode" Version="1.1.1" />
<PackageReference Update="System.Collections.Immutable" Version="8.0.0-rc.1.23419.4" />
<PackageReference Update="System.Collections.Immutable" Version="8.0.0-rc.2.23479.6" />
<!-- Tests -->
<PackageReference Update="System.Data.Odbc" Version="8.0.0-rc.1.23419.4" />
<PackageReference Update="System.Data.OleDb" Version="8.0.0-rc.1.23419.4" />
<PackageReference Update="System.Data.Odbc" Version="8.0.0-rc.2.23479.6" />
<PackageReference Update="System.Data.OleDb" Version="8.0.0-rc.2.23479.6" />
<PackageReference Update="Microsoft.EntityFrameworkCore.Design" Version="$(EFCoreVersion)" />
<PackageReference Update="Microsoft.EntityFrameworkCore.Relational.Specification.Tests" Version="$(EFCoreVersion)" />
<PackageReference Update="Microsoft.Extensions.Logging.Console" Version="8.0.0-rc.1.23419.4" />
<PackageReference Update="Microsoft.Extensions.Logging.Console" Version="8.0.0-rc.2.23479.6" />
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Update="MSTest.TestAdapter" Version="3.1.1" />
<PackageReference Update="MSTest.TestFramework" Version="3.1.1" />
@ -39,14 +39,14 @@
<PackageReference Update="xunit.assert" Version="2.4.2" />
<PackageReference Update="xunit.runner.visualstudio" Version="2.4.5" />
<PackageReference Update="xunit.runner.console" Version="2.4.2" />
<PackageReference Update="Microsoft.Extensions.Configuration.FileExtensions" Version="8.0.0-rc.1.23419.4" />
<PackageReference Update="Microsoft.Extensions.Configuration.FileExtensions" Version="8.0.0-rc.2.23479.6" />
<PackageReference Update="NetTopologySuite" Version="2.5.0" />
<PackageReference Update="System.ComponentModel.TypeConverter" Version="4.3.0" />
<PackageReference Update="Castle.Core" Version="5.1.1" />
<!-- EFCore.Jet.Tests -->
<PackageReference Update="Microsoft.CodeAnalysis.CSharp" Version="4.7.0" />
<PackageReference Update="Microsoft.Extensions.DependencyModel" Version="8.0.0-rc.1.23419.4" />
<PackageReference Update="Microsoft.Extensions.DependencyModel" Version="8.0.0-rc.2.23479.6" />
<PackageReference Update="Moq" Version="4.20.69" />
</ItemGroup>
</Project>

@ -15,9 +15,7 @@ using Microsoft.EntityFrameworkCore.Diagnostics;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Query;
using Microsoft.EntityFrameworkCore.Query.SqlExpressions;
using ExpressionExtensions = Microsoft.EntityFrameworkCore.Internal.ExpressionExtensions;
using Microsoft.EntityFrameworkCore.Metadata;
using Microsoft.EntityFrameworkCore.Metadata.Internal;
using Microsoft.EntityFrameworkCore.Storage.Internal;
namespace EntityFrameworkCore.Jet.Query.Sql.Internal
{

@ -528,13 +528,6 @@ WHERE [p].[Ints] = @__ints_0
""");
}
public override async Task Column_collection_Concat_parameter_collection_equality_inline_collection_not_supported(bool async)
{
await base.Column_collection_Concat_parameter_collection_equality_inline_collection_not_supported(async);
AssertSql();
}
public override async Task Column_collection_equality_inline_collection(bool async)
{
await base.Column_collection_equality_inline_collection(async);
@ -608,35 +601,6 @@ ORDER BY [p].[Id]
// we don't propagate error details from projection
=> AssertTranslationFailed(() => base.Project_collection_of_datetimes_filtered(async));
public override async Task Project_collection_of_ints_with_paging(bool async)
{
await base.Project_collection_of_ints_with_paging(async);
// client eval
AssertSql(
"""
SELECT [p].[NullableInts]
FROM [PrimitiveCollectionsEntity] AS [p]
ORDER BY [p].[Id]
""");
}
public override Task Project_collection_of_ints_with_paging2(bool async)
// we don't propagate error details from projection
=> AssertTranslationFailed(() => base.Project_collection_of_ints_with_paging2(async));
public override async Task Project_collection_of_ints_with_paging3(bool async)
{
await base.Project_collection_of_ints_with_paging3(async);
// client eval
AssertSql(
"""
SELECT [p].[NullableInts]
FROM [PrimitiveCollectionsEntity] AS [p]
ORDER BY [p].[Id]
""");
}
public override async Task Project_collection_of_ints_with_distinct(bool async)
{

Loading…
Cancel
Save