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 a server instance and starts the server. 
            The version number defaults to the version of the SqlLocalDB utility
            
		
	Syntax
	public static void LocalDbCreateInstance(this ICakeContext context, string instanceName)
	Examples
	
                #addin "nuget:?package=Cake.SqlServer"
    Task("Create-LocalDB")
         .Does(() =>
         {
            LocalDbCreateInstance("Cake-Test");
        });
             
	Attributes
	
		
			
				
					
						| Type | Description | 
				
					
						| CakeMethodAliasAttribute |  | 
			
		 
	 	
	Parameters
	
		
			
				
					
						| Name | Type | Description | 
				
					
						| context | ICakeContext | Cake context | 
					
						| instanceName | string | Name of the instance to create | 
			
		 
	 	
	Return Value