You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/dbup-sqlserver/SqlServerExtensions.cs
+11-6Lines changed: 11 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -214,12 +214,12 @@ public static bool SqlDatabase(this SupportedDatabasesForEnsureDatabase supporte
214
214
/// <param name="commandTimeout">Use this to set the command time out for creating a database in case you're encountering a time out in this operation.</param>
215
215
/// <param name="azureDatabaseEdition">Azure edition to Create</param>
216
216
/// <param name="collation">The collation name to set during database creation</param>
217
-
/// <param name="createDbSqlCommands">A list of custom SQL commands that will be used to create the database.</param>
217
+
/// <param name="createDbSqlCommandsFactory">A factory receiving the DB name, and returning a list of custom SQL commands that will be used to create the database.</param>
218
218
/// <param name="checkOnly">If true, only checks whether the database would've been created but does not perform the creation.</param>
219
219
/// <returns>True if the database was (or would've been) created; otherwise false.</returns>
@@ -231,7 +231,7 @@ public static bool SqlDatabase(this SupportedDatabasesForEnsureDatabase supporte
231
231
/// <param name="timeout">Use this to set the command time out for creating a database in case you're encountering a time out in this operation.</param>
232
232
/// <param name="azureDatabaseEdition">Use to indicate that the SQL server database is in Azure</param>
233
233
/// <param name="collation">The collation name to set during database creation</param>
234
-
/// <param name="createDbSqlCommands">A list of custom SQL commands that will be used to create the database.</param>
234
+
/// <param name="createDbSqlCommandsFactory">A factory receiving the DB name, and returning a list of custom SQL commands that will be used to create the database.</param>
235
235
/// <param name="checkOnly">If true, only checks whether the database would've been created but does not perform the creation.</param>
236
236
/// <returns>True if the database was (or would've been) created; otherwise false.</returns>
237
237
publicstaticboolSqlDatabase(
@@ -241,7 +241,7 @@ public static bool SqlDatabase(
0 commit comments