DacCompilationUnit.AddTSqlSourceFile Method
Adds a Transact-SQL script file to the compilation unit.
Namespace: Microsoft.SqlServer.Management.Dac
Assembly: Microsoft.SqlServer.Management.Dac (in Microsoft.SqlServer.Management.Dac.dll)
Syntax
'Declaration
Public Function AddTSqlSourceFile ( _
filename As String, _
content As String _
) As TSqlSourceFile
'Usage
Dim instance As DacCompilationUnit
Dim filename As String
Dim content As String
Dim returnValue As TSqlSourceFile
returnValue = instance.AddTSqlSourceFile(filename, _
content)
public TSqlSourceFile AddTSqlSourceFile(
string filename,
string content
)
public:
TSqlSourceFile^ AddTSqlSourceFile(
String^ filename,
String^ content
)
member AddTSqlSourceFile :
filename:string *
content:string -> TSqlSourceFile
public function AddTSqlSourceFile(
filename : String,
content : String
) : TSqlSourceFile
Parameters
- filename
Type: System.String
A String value that specifies the Transact-SQL source file name.
- content
Type: System.String
A String value that specifies the content.
Return Value
Type: Microsoft.SqlServer.Management.Dac.TSqlSourceFile
A TSqlSrouceFile object that specifies the script file that is added to the compilation unit.