Completed
Last Updated: 01 Jul 2021 11:13 by ADMIN
Roman
Created on: 11 Feb 2015 12:17
Category: UI for ASP.NET MVC
Type: Feature Request
2
Make Grid support typed datasets
Currently, binding to typed datasets is only supported after dataset is cast to its untyped version (typedDataset as DataSet).

This dictates using strings for columns declaration of Grid instead of lambdas:
  .Columns(columns =>  {columns.Bound("Name");})
and not 
  .Columns(columns =>  {columns.Bound(x => x.Name);})

It might be very useful if Grid will support binding to typed datasets directly.
0 comments