Skip to main content

FetchRowsResult Class

The result of the fetch rows operation.

Namespace: DevExpress.WinUI.Grid

Assembly: DevExpress.WinUI.Grid.v23.2.dll

NuGet Package: DevExpress.WinUI

Declaration

public sealed class FetchRowsResult

Remarks

The FetchRowsResult class includes an implicit conversion operator that converts an array to a FetchRowsResult object:

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

Refer to the following help topic for more information: Fetch Data.

Inheritance

Object
FetchRowsResult
See Also