Table of Contents

Class LoadDataArgs

Namespace
Radzen
Assembly
Radzen.Blazor.dll

Supplies information about a LoadData event that is being raised.

public class LoadDataArgs
Inheritance
LoadDataArgs
Inherited Members

Constructors

LoadDataArgs()

public LoadDataArgs()

Properties

Filter

Gets the filter expression as a string.

public string Filter { get; set; }

Property Value

string

The filter.

Filters

Gets the filter expression as a collection of filter descriptors.

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

Property Value

IEnumerable<FilterDescriptor>

OrderBy

Gets the sort expression as a string.

public string OrderBy { get; set; }

Property Value

string

Skip

Gets how many items to skip. Related to paging and the current page. Usually used with the Skip<TSource>(IEnumerable<TSource>, int) LINQ method.

public int? Skip { get; set; }

Property Value

int?

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 how many items to take. Related to paging and the current page size. Usually used with the Take<TSource>(IEnumerable<TSource>, int) LINQ method.

public int? Top { get; set; }

Property Value

int?

The top.