corelibraries-devexpress-dot-xpo-dot-db-dot-selecteddata.md
The results of select query statements. To learn more, refer to How to: Access Data in SQL Query Results.
Namespace : DevExpress.Xpo.DB
Assembly : DevExpress.Data.v25.2.dll
NuGet Package : DevExpress.Data
public SelectStatementResult[] ResultSet
Public ResultSet As SelectStatementResult()
| Type |
|---|
| SelectStatementResult[] |
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ResultSet field.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
var mapping = preResults[i].Mapping;
var result = selectedData.ResultSet[i];
var objects = PhaseTwo(mapping, preResults[i].ObjectType, result, toLoad);
Dim mapping = preResults(i).Mapping
Dim result = selectedData.ResultSet(i)
Dim objects = PhaseTwo(mapping, preResults(i).ObjectType, result, toLoad)
See Also