Class ODataQueryBuilder

ODataQueryBuilder class

This class provides parameters(supported Microsoft Graph) and builds a query that specifies and controls the amount of data returned in the response.

public class ODataQueryBuilder

Constructors

NameDescription
ODataQueryBuilder()The default constructor.

Properties

NameDescription
Count { get; set; }Retrieves the total count of matching resources.
Expand { get; set; }Retrieves related resources.
Filter { get; set; }Filters results (rows).
Format { get; set; }Returns the results in the specified media format.
OrderBy { get; set; }Orders results.
Search { get; set; }Returns results based on search criteria.
Select { get; set; }Filters properties (columns).
Skip { get; set; }Indexes into a result set. Also used by some APIs to implement paging and can be used together with $top to manually page results.
Top { get; set; }Sets the page size of results.

See Also