Interface IQuery
public interface IQuery
- Extension Methods
Properties
Count
Gets or sets a value indicating whether to count the total number of items matching the query.
bool Count { get; set; }
Property Value
Filters
Gets or sets the filter criteria used to refine search results.
string? Filters { get; set; }
Property Value
OrderBy
Gets or sets the criteria used to order the results.
string? OrderBy { get; set; }
Property Value
Search
Gets or sets a full text search string query.
string? Search { get; set; }
Property Value
Select
Gets or sets the fields to be selected.
string? Select { get; set; }
Property Value
Skip
Gets or sets the number of items to skip.
int? Skip { get; set; }
Property Value
- int?
Table
Gets or sets the entity set targeted by the query.
string Table { get; set; }
Property Value
Top
Gets or sets the maximum number of items to retrieve.
int? Top { get; set; }
Property Value
- int?