Table of Contents

Class Query

Namespace
Radzen
Assembly
Radzen.Blazor.dll

Contains a LINQ query in a serializable format.

public class Query
Inheritance
Query
Inherited Members

Constructors

Query()

public Query()

Properties

Expand

Gets or sets the expand.

public string Expand { get; set; }

Property Value

string

The expand.

Filter

Gets or sets the filter.

public string Filter { get; set; }

Property Value

string

The filter.

FilterParameters

Gets or sets the filter parameters.

public object[] FilterParameters { get; set; }

Property Value

object[]

The filter parameters.

Filters

Gets the filter expression as a collection of filter descriptors.

public IEnumerable<FilterDescriptor> Filters { get; set; }

Property Value

IEnumerable<FilterDescriptor>

The filter parameters.

OrderBy

Gets or sets the order by.

public string OrderBy { get; set; }

Property Value

string

The order by.

Select

Gets or sets the select.

public string Select { get; set; }

Property Value

string

The select.

Skip

Gets or sets the skip.

public int? Skip { get; set; }

Property Value

int?

The skip.

Sorts

Gets the sort expression as a collection of sort descriptors.

public IEnumerable<SortDescriptor> Sorts { get; set; }

Property Value

IEnumerable<SortDescriptor>

The sorts.

Top

Gets or sets the top.

public int? Top { get; set; }

Property Value

int?

The top.

Methods

ToUrl(string)

Converts the query to OData query format.

public string ToUrl(string url)

Parameters

url string

The URL.

Returns

string

System.String.