Skip to content

Commit

Permalink
Bump EFCore version
Browse files Browse the repository at this point in the history
  • Loading branch information
cincuranet committed Apr 26, 2024
1 parent e0eb366 commit 3f1a53a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,9 @@ public MigrationsFbTest(MigrationsFbFixture fixture)
[Fact(Skip = SkipReason)]
public override Task Add_column_with_unbounded_max_length() => base.Add_column_with_unbounded_max_length();

[Fact(Skip = SkipReason)]
public override Task Add_required_primitve_collection_with_custom_default_value_sql_to_existing_table() => Task.CompletedTask;

public class MigrationsFbFixture : MigrationsFixtureBase
{
protected override string StoreName => nameof(MigrationsFbTest);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ public override Task Parameter_collection_Count(bool async)

[NotSupportedOnFirebirdTheory]
[MemberData(nameof(IsAsyncData))]
public override Task Parameter_collection_of_ints_Contains(bool async)
public override Task Parameter_collection_of_ints_Contains_int(bool async)
{
return base.Parameter_collection_of_ints_Contains(async);
return base.Parameter_collection_of_ints_Contains_int(async);
}

[NotSupportedOnFirebirdTheory]
Expand All @@ -128,9 +128,9 @@ public override Task Parameter_collection_of_nullable_ints_Contains_nullable_int

[NotSupportedOnFirebirdTheory]
[MemberData(nameof(IsAsyncData))]
public override Task Parameter_collection_of_strings_Contains_non_nullable_string(bool async)
public override Task Parameter_collection_of_strings_Contains_string(bool async)
{
return base.Parameter_collection_of_strings_Contains_non_nullable_string(async);
return base.Parameter_collection_of_strings_Contains_string(async);
}

[NotSupportedOnFirebirdTheory]
Expand Down
2 changes: 1 addition & 1 deletion src/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<PropertyGroup>
<EFCoreProviderVersion>11.0.0-beta1</EFCoreProviderVersion>
<EFCoreReferenceProviderVersion>10.0.0</EFCoreReferenceProviderVersion>
<EFCoreReferencePackageVersion>8.0.1</EFCoreReferencePackageVersion>
<EFCoreReferencePackageVersion>8.0.4</EFCoreReferencePackageVersion>
</PropertyGroup>
<!-- EF6 -->
<PropertyGroup>
Expand Down

0 comments on commit 3f1a53a

Please sign in to comment.