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
/// Initializer used to initialize the database for the tests.
13
-
/// Call the <see cref="Initialize(SqlServerDatabaseInitializer, string, string)"/> method to initialize a database from
13
+
/// Call the <see cref="Initialize(SqlServerDatabaseInitializer, string, string, SqlServerDacDeploymentSettings?)"/> method to initialize a database from
14
14
/// a DACPAC file.
15
15
/// </summary>
16
-
/// <remarks>The database will be created the call of the <see cref="Initialize(SqlServerDatabaseInitializer, string, string)"/> method. For the next calls
16
+
/// <remarks>The database will be created the call of the <see cref="Initialize(SqlServerDatabaseInitializer, string, string, SqlServerDacDeploymentSettings?)"/> method. For the next calls
17
17
/// the database is preserved but all the data are deleted.</remarks>
18
18
publicstaticclassSqlServerDacDatabaseInitializer
19
19
{
@@ -23,8 +23,9 @@ public static class SqlServerDacDatabaseInitializer
23
23
/// <param name="initializer"><see cref="SqlServerDatabaseInitializer"/> which the initialization will be perform on.</param>
24
24
/// <param name="packageName">Full path of the DACPAC file.</param>
25
25
/// <param name="connectionString">Connection string to the SQL Server with administrator rights.</param>
26
+
/// <param name="settings">Additionnal settings for the DACPAC <paramref name="packageName"/> to deploy.</param>
26
27
/// <returns>An instance of the <see cref="SqlServerDatabase"/> which allows to perform query to initialize the data.</returns>
0 commit comments