Supplies information about a LoadData event that is being raised.
Object
Namespace: Radzen
Assembly: Radzen.Blazor.dll
public class LoadDataArgsSupplies information about a LoadData event that is being raised.
public LoadDataArgs()Gets the filter expression as a string.
public string Filter { get; set; }
| Type | Description |
|---|---|
| string | Gets the filter expression as a string. |
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 the sort expression as a string.
public string OrderBy { get; set; }
| Type | Description |
|---|---|
| string | Gets the sort expression as a string. |
Gets how many items to skip. Related to paging and the current page. Usually used with the Int32) LINQ method.
public int? Skip { get; set; }
| Type | Description |
|---|---|
| int? | Gets how many items to skip. Related to paging and the current page. Usually used with the Int32) LINQ method. |
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 how many items to take. Related to paging and the current page size. Usually used with the Int32) LINQ method.
public int? Top { get; set; }
| Type | Description |
|---|---|
| int? | Gets how many items to take. Related to paging and the current page size. Usually used with the Int32) LINQ method. |