diff --git a/Dependencies.targets b/Dependencies.targets index c37d19e..c4de0fa 100644 --- a/Dependencies.targets +++ b/Dependencies.targets @@ -1,33 +1,33 @@ - [8.0.0-rc.1.23419.6, 9.0.0) + [8.0.0-rc.2.23480.1, 9.0.0) - - - + + + - + - - - - + + + + - + - - + + - + @@ -39,14 +39,14 @@ - + - + \ No newline at end of file diff --git a/src/EFCore.Jet/Query/Sql/Internal/JetQuerySqlGenerator.cs b/src/EFCore.Jet/Query/Sql/Internal/JetQuerySqlGenerator.cs index 9c33a79..cf6eb74 100644 --- a/src/EFCore.Jet/Query/Sql/Internal/JetQuerySqlGenerator.cs +++ b/src/EFCore.Jet/Query/Sql/Internal/JetQuerySqlGenerator.cs @@ -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 { diff --git a/test/EFCore.Jet.FunctionalTests/Query/PrimitiveCollectionsQueryJetTest.cs b/test/EFCore.Jet.FunctionalTests/Query/PrimitiveCollectionsQueryJetTest.cs index 72aca99..7f13235 100644 --- a/test/EFCore.Jet.FunctionalTests/Query/PrimitiveCollectionsQueryJetTest.cs +++ b/test/EFCore.Jet.FunctionalTests/Query/PrimitiveCollectionsQueryJetTest.cs @@ -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) {