QuickGrid<TGridItem>.Items Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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