Table of Contents

Interface IQuery

Namespace
Utils.OData
Assembly
Utils.OData.dll
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

bool

Filters

Gets or sets the filter criteria used to refine search results.

string? Filters { get; set; }

Property Value

string

OrderBy

Gets or sets the criteria used to order the results.

string? OrderBy { get; set; }

Property Value

string

Gets or sets a full text search string query.

string? Search { get; set; }

Property Value

string

Select

Gets or sets the fields to be selected.

string? Select { get; set; }

Property Value

string

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

string

Top

Gets or sets the maximum number of items to retrieve.

int? Top { get; set; }

Property Value

int?