Back to Devexpress

FetchRowsResult Class

corelibraries-devexpress-dot-xpf-dot-data.md

latest1.4 KB
Original Source

FetchRowsResult Class

The result of the fetch rows operation.

Namespace : DevExpress.Xpf.Data

Assembly : DevExpress.Mvvm.v25.2.dll

NuGet Packages : DevExpress.Mvvm, DevExpress.Win.Navigation

Declaration

csharp
public sealed class FetchRowsResult
vb
Public NotInheritable Class FetchRowsResult

Remarks

The FetchRowsResult class has an implicit conversion operator:

csharp
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

FetchRowsResult Members

DevExpress.Xpf.Data Namespace