I have a model with a property of IQueryable<T> that I want to bind to a grid. This achievable with the Html helper but to me it looks messy. I was trying to achieve the same with the tag helper. In the html helper it is @(Html.Kendo().Grid(Model.GridData) ... I do not see a property that I can connect the Model.GridData in <kendo-grid ...
Does anybody have a suggestion?