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
Starts the LocalDB instance. Instance must exist before you can start it.
Syntax
public static void LocalDbStartInstance(this ICakeContext context, string instanceName)
Examples
#addin "nuget:?package=Cake.SqlServer"
Task("Start-LocalDB")
.Does(() =>
{
LocalDbStartInstance("Cake-Test");
});
Attributes
Type |
Description |
CakeMethodAliasAttribute |
|
Parameters
Name |
Type |
Description |
context |
ICakeContext |
Cake context |
instanceName |
string |
Name of the instance to start |
Return Value