Contains a LINQ query in a serializable format.
Object
Namespace: Radzen
Assembly: Radzen.Blazor.dll
public class QueryGets or sets the expand.
public string Expand { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the expand. |
Gets the filter expression as a string.
public string Filter { get; set; }
| Type | Description |
|---|---|
| string | Gets the filter expression as a string. |
Gets or sets the filter parameters.
public Object[] FilterParameters { get; set; }
| Type | Description |
|---|---|
| Object[] | Gets or sets the filter parameters. |
Gets the filter expression as a collection of filter descriptors.
public IEnumerable<FilterDescriptor> Filters { get; set; }
| Type | Description |
|---|---|
| IEnumerable<FilterDescriptor> | Gets the filter expression as a collection of filter descriptors. |
Gets or sets the order by.
public string OrderBy { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the order by. |
Gets or sets the select.
public string Select { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the select. |
Gets or sets the skip.
public int? Skip { get; set; }
| Type | Description |
|---|---|
| int? | Gets or sets the skip. |
Gets the sort expression as a collection of sort descriptors.
public IEnumerable<SortDescriptor> Sorts { get; set; }
| Type | Description |
|---|---|
| IEnumerable<SortDescriptor> | Gets the sort expression as a collection of sort descriptors. |
Gets or sets the top.
public int? Top { get; set; }
| Type | Description |
|---|---|
| int? | Gets or sets the top. |
Converts the query to OData query format.
public string ToUrl(string url)
| Type | Name | Description |
|---|---|---|
| string | url | The URL. |
| Type | Description |
|---|---|
| string | System.String. |