DeploymentScriptStep 构造函数

定义

重载

DeploymentScriptStep(IEnumerable<String>)

使用多个 TSQL 脚本初始化 a DeploymentScriptStep

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))

参数

batches
IEnumerable<String>

IEnumerable<T> 表示 TSQL 脚本的字符串

适用于

DeploymentScriptStep(String)

创建 的实例 DeploymentScriptStep

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

参数

text
String

要部署的脚本

适用于