File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 15
15
publish :
16
16
env :
17
17
CONFIGURATION : ' Release'
18
- DOTNET_VERSION : ' 6 .0'
18
+ DOTNET_VERSION : ' 9 .0'
19
19
runs-on : ubuntu-latest
20
20
steps :
21
21
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change 10
10
publish :
11
11
env :
12
12
CONFIGURATION : ' Release'
13
- DOTNET_VERSION : ' 6 .0'
13
+ DOTNET_VERSION : ' 9 .0'
14
14
runs-on : ubuntu-latest
15
15
steps :
16
16
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -25,13 +25,13 @@ public PostgreContainerAsyncInfrastructure(bool initialize = false) : base(initi
25
25
}
26
26
27
27
/// <summary>
28
- /// Returns a SQL Server connection connected to the current infrastructure's database.
28
+ /// Returns a PostgreSQL connection connected to the current infrastructure's database.
29
29
/// </summary>
30
- /// <returns>A SqlConnection instance connected to the current infrastructure's database.</returns>
30
+ /// <returns>A NpgsqlConnection instance connected to the current infrastructure's database.</returns>
31
31
public NpgsqlConnection GetDatabaseConnection ( ) => new NpgsqlConnection ( GetConnectionString ( FullDbName ) ) ;
32
32
33
33
/// <summary>
34
- /// Returns a SQL Server connection string pointing to the current infrastructure's database.
34
+ /// Returns a PostgreSQL connection string pointing to the current infrastructure's database.
35
35
/// </summary>
36
36
/// <returns>A SqlConnection instance pointing to the current infrastructure's database.</returns>
37
37
public string GetDatabaseConnectionString ( ) => GetConnectionString ( FullDbName ) ;
@@ -55,7 +55,7 @@ public override async Task Initialize()
55
55
/// <summary>
56
56
/// Called after the database is created. Override this method to populate the database with data.
57
57
/// </summary>
58
- /// <param name="connection">A SqlConnection pointing on the newly created database</param>
58
+ /// <param name="connection">A NpgsqlConnection pointing on the newly created database</param>
59
59
protected virtual Task PopulateDatabase ( NpgsqlConnection connection )
60
60
{
61
61
return Task . CompletedTask ;
You can’t perform that action at this time.
0 commit comments