Примечание.
Для доступа к этой странице требуется авторизация. Вы можете попробовать войти или изменить каталоги.
Для доступа к этой странице требуется авторизация. Вы можете попробовать изменить каталоги.
Creates a linear Transact-SQL script based on an array of SqlSmoObjects.
Пространство имен: Microsoft.SqlServer.Management.Smo
Сборка: Microsoft.SqlServer.Smo (в Microsoft.SqlServer.Smo.dll)
Синтаксис
'Декларация
Public Function EnumScriptWithList ( _
objects As SqlSmoObject() _
) As IEnumerable(Of String)
'Применение
Dim instance As Scripter
Dim objects As SqlSmoObject()
Dim returnValue As IEnumerable(Of String)
returnValue = instance.EnumScriptWithList(objects)
public IEnumerable<string> EnumScriptWithList(
SqlSmoObject[] objects
)
public:
IEnumerable<String^>^ EnumScriptWithList(
array<SqlSmoObject^>^ objects
)
member EnumScriptWithList :
objects:SqlSmoObject[] -> IEnumerable<string>
public function EnumScriptWithList(
objects : SqlSmoObject[]
) : IEnumerable<String>
Параметры
- objects
Тип: array<Microsoft.SqlServer.Management.Smo.SqlSmoObject[]
SqlSmoObject array.
Возвращаемое значение
Тип: System.Collections.Generic.IEnumerable<String>
An IEnumerable interface that exposes an enumerator that supports a simple iteration over a script. This script contains the SqlSmoObject and the DependencyCollection for each of those objects.
Замечания
The return value contains data if the ScriptData property has been set to True before this method is run.