This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see Cake.SqlServer.
Summary
Creates an empty database if another database with the same does not already exist.
#addin "nuget:?package=Cake.SqlServer"
Task("Create-Database-If-Not-Exists")
.Does(() =>
{
var connectionString = @"Server=(localdb)\MSSqlLocalDb";
var dbName = "CakeTest";
var createSettings = new CreateDatabaseSettings()
.WithPrimaryFile(@"C:\MyPath\DB\CakeTest.mdf")
.WithLogFile(@"C:\MyPath\DB\CakeTest.ldf");
CreateDatabaseIfNotExists(connectionString, dbName, createSettings);
});
Attributes
Type
Description
CakeMethodAliasAttribute
Parameters
Name
Type
Description
context
ICakeContext
The Cake context
connectionString
string
The connection string. For this operation, it is recommended to connect to the master database (default). If there are changing parameters, Microsoft.Data.SqlClient.SqlConnectionStringBuilder is recommended to escape input.