File tree Expand file tree Collapse file tree 5 files changed +19
-6
lines changed
test/EFCore.PG.FunctionalTests/Migrations Expand file tree Collapse file tree 5 files changed +19
-6
lines changed Original file line number Diff line number Diff line change 11
11
pull_request :
12
12
13
13
env :
14
- dotnet_sdk_version : ' 9.0.100-rc.2.24474.11 '
14
+ dotnet_sdk_version : ' 9.0.100'
15
15
postgis_version : 3
16
16
DOTNET_SKIP_FIRST_TIME_EXPERIENCE : true
17
17
Original file line number Diff line number Diff line change 27
27
- cron : ' 30 22 * * 6'
28
28
29
29
env :
30
- dotnet_sdk_version : ' 9.0.100-rc.2.24474.11 '
30
+ dotnet_sdk_version : ' 9.0.100'
31
31
32
32
jobs :
33
33
analyze :
Original file line number Diff line number Diff line change 1
1
<Project >
2
2
<PropertyGroup >
3
- <EFCoreVersion >[9.0.0-rc.2.24474.1] </EFCoreVersion >
4
- <MicrosoftExtensionsVersion >9.0.0-rc.2.24473.5 </MicrosoftExtensionsVersion >
3
+ <EFCoreVersion >[9.0.0,10.0.0) </EFCoreVersion >
4
+ <MicrosoftExtensionsVersion >9.0.0</MicrosoftExtensionsVersion >
5
5
<NpgsqlVersion >9.0.0-preview.1-ci.20241028T080028</NpgsqlVersion >
6
6
</PropertyGroup >
7
7
Original file line number Diff line number Diff line change 1
1
{
2
2
"sdk" : {
3
- "version" : " 9.0.100-rc.2.24474.11 " ,
3
+ "version" : " 9.0.100" ,
4
4
"rollForward" : " latestMajor" ,
5
- "allowPrerelease" : true
5
+ "allowPrerelease" : false
6
6
}
7
7
}
Original file line number Diff line number Diff line change @@ -7,6 +7,16 @@ namespace Npgsql.EntityFrameworkCore.PostgreSQL.Migrations
7
7
public class MigrationsInfrastructureNpgsqlTest ( MigrationsInfrastructureNpgsqlTest . MigrationsInfrastructureNpgsqlFixture fixture )
8
8
: MigrationsInfrastructureTestBase < MigrationsInfrastructureNpgsqlTest . MigrationsInfrastructureNpgsqlFixture > ( fixture )
9
9
{
10
+ // TODO: Remove once we sync to https://github.com/dotnet/efcore/pull/35106
11
+ public override void Can_generate_no_migration_script ( )
12
+ {
13
+ }
14
+
15
+ // TODO: Remove once we sync to https://github.com/dotnet/efcore/pull/35106
16
+ public override void Can_generate_migration_from_initial_database_to_initial ( )
17
+ {
18
+ }
19
+
10
20
public override void Can_get_active_provider ( )
11
21
{
12
22
base . Can_get_active_provider ( ) ;
@@ -159,6 +169,9 @@ public override void Can_diff_against_2_1_ASP_NET_Identity_model()
159
169
// TODO: Implement
160
170
}
161
171
172
+ protected override Task ExecuteSqlAsync ( string value )
173
+ => ( ( NpgsqlTestStore ) Fixture . TestStore ) . ExecuteNonQueryAsync ( value ) ;
174
+
162
175
public class MigrationsInfrastructureNpgsqlFixture : MigrationsInfrastructureFixtureBase
163
176
{
164
177
protected override ITestStoreFactory TestStoreFactory
You can’t perform that action at this time.
0 commit comments