SfcObjectQuery.ExecuteDataTable Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Execute the query string to retrieve the specified fields and return a fully populated DataTable.
public System.Data.DataTable ExecuteDataTable (Microsoft.SqlServer.Management.Sdk.Sfc.SfcQueryExpression query, string[] fields, Microsoft.SqlServer.Management.Sdk.Sfc.OrderBy[] orderByFields);
member this.ExecuteDataTable : Microsoft.SqlServer.Management.Sdk.Sfc.SfcQueryExpression * string[] * Microsoft.SqlServer.Management.Sdk.Sfc.OrderBy[] -> System.Data.DataTable
Public Function ExecuteDataTable (query As SfcQueryExpression, fields As String(), orderByFields As OrderBy()) As DataTable
Parameters
- query
- SfcQueryExpression
The query string to process.
- fields
- String[]
The field names to retrieve. If null, all default inexpensive fields are retrieved.
- orderByFields
- OrderBy[]
The field names that we need to order on. If null no order will be used.
Returns
The data table of results.