Skip to main content
A newer version of this page is available. .

FetchRowsResult Class

The result of the fetch rows operation.

Namespace: DevExpress.Xpf.Data

Assembly: DevExpress.Xpf.Core.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Core, DevExpress.Wpf.Core

Declaration

public sealed class FetchRowsResult

Remarks

The FetchRowsResult class has an implicit conversion operator:

public sealed class FetchRowsResult {
    public static implicit operator FetchRowsResult(object[] rows) {
        return new FetchRowsResult(rows, hasMoreRows: true);
    }
    // ...
}

This operator converts an array to a FetchRowsResult object.

Inheritance

Object
FetchRowsResult
See Also