If I used a LINQ join that returns anonymous objects, in the manner found in
http://stackoverflow.com/questions/5808116/linq-how-to-do-join-using-the-linq-extension-method-style-on-multiple-fields
How could I set that as my grid's model?
http://stackoverflow.com/questions/5808116/linq-how-to-do-join-using-the-linq-extension-method-style-on-multiple-fields
How could I set that as my grid's model?
@(Html.Kendo().Grid<*what do I put here?*>()
.Name("grid")
.DataSource(dataSource => dataSource // Configure the grid data source
.Ajax() // Specify that ajax binding is used
.Read(read => read.Action(...)
)
...more configs...
)