Class RowQueryResult
- Namespace
- Dynamicweb.Data.Firehose
- Assembly
- Dynamicweb.Core.dll
Represents the result of a row-based query, including the total number of rows and the retrieved data.
public sealed class RowQueryResult
- Inheritance
-
RowQueryResult
- Inherited Members
Remarks
Use this class to access the results of a query that returns rows, such as when paging through large datasets. The data collection contains the rows returned for the current query segment, while TotalCount indicates the total number of rows that match the query criteria.
Properties
Data
Gets the collection of data rows contained in the result set.
public IReadOnlyCollection<Row> Data { get; }
Property Value
TotalCount
Gets the total number of items in the collection or result set.
public int TotalCount { get; init; }