Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Executes the query string and return a SfcObjectIterator to enumerate the results without caching them. Do not reference this member directly in your code. It supports the SQL Server infrastructure.
Namespace: Microsoft.SqlServer.Management.Sdk.Sfc
Assembly: Microsoft.SqlServer.Management.Sdk.Sfc (in Microsoft.SqlServer.Management.Sdk.Sfc.dll)
Syntax
'Declaration
Public Function ExecuteIterator ( _
query As SfcQueryExpression, _
fields As String(), _
orderByFields As OrderBy() _
) As IEnumerable
'Usage
Dim instance As SfcObjectQuery
Dim query As SfcQueryExpression
Dim fields As String()
Dim orderByFields As OrderBy()
Dim returnValue As IEnumerable
returnValue = instance.ExecuteIterator(query, _
fields, orderByFields)
public IEnumerable ExecuteIterator(
SfcQueryExpression query,
string[] fields,
OrderBy[] orderByFields
)
public:
IEnumerable^ ExecuteIterator(
SfcQueryExpression^ query,
array<String^>^ fields,
array<OrderBy^>^ orderByFields
)
member ExecuteIterator :
query:SfcQueryExpression *
fields:string[] *
orderByFields:OrderBy[] -> IEnumerable
public function ExecuteIterator(
query : SfcQueryExpression,
fields : String[],
orderByFields : OrderBy[]
) : IEnumerable
Parameters
- query
Type: Microsoft.SqlServer.Management.Sdk.Sfc.SfcQueryExpression
The query string to process.
- fields
Type: array<System.String[]
The field names to retrieve. If null, all default inexpensive fields are retrieved.
- orderByFields
Type: array<Microsoft.SqlServer.Management.Sdk.Sfc.OrderBy[]
The field names that we need to order on. If null, no order will be used.
Return Value
Type: System.Collections.IEnumerable
A SfcObjectIterator to enumerate the results.