QuickGrid<TGridItem>.Items Property

Definition

A queryable source of data for the grid.

This could be in-memory data converted to queryable using the AsQueryable(IEnumerable) extension method, or an EntityFramework DataSet or an IQueryable derived from it.

You should supply either Items or ItemsProvider, but not both.

[Microsoft.AspNetCore.Components.Parameter]
public System.Linq.IQueryable<TGridItem>? Items { get; set; }
[<Microsoft.AspNetCore.Components.Parameter>]
member this.Items : System.Linq.IQueryable<'GridItem> with get, set
Public Property Items As IQueryable(Of TGridItem)

Property Value

IQueryable<TGridItem>
Attributes

Applies to