DeploymentScriptStep Constructors

Definition

Overloads

DeploymentScriptStep(IEnumerable<String>)

Initializes a DeploymentScriptStep with multiple TSQL scripts

DeploymentScriptStep(String)

Creates an instance of DeploymentScriptStep

DeploymentScriptStep(IEnumerable<String>)

Initializes a DeploymentScriptStep with multiple TSQL scripts

public DeploymentScriptStep (System.Collections.Generic.IEnumerable<string> batches);
new Microsoft.SqlServer.Dac.Deployment.DeploymentScriptStep : seq<string> -> Microsoft.SqlServer.Dac.Deployment.DeploymentScriptStep
Public Sub New (batches As IEnumerable(Of String))

Parameters

batches
IEnumerable<String>

IEnumerable<T> of strings representing TSQL scripts

Applies to

DeploymentScriptStep(String)

Creates an instance of DeploymentScriptStep

public DeploymentScriptStep (string text);
new Microsoft.SqlServer.Dac.Deployment.DeploymentScriptStep : string -> Microsoft.SqlServer.Dac.Deployment.DeploymentScriptStep
Public Sub New (text As String)

Parameters

text
String

script to deploy

Applies to