New to Telerik UI for ASP.NET Core? Download free 30-day trial

DataSourceSortDescriptorFactory

Methods

Add(System.Linq.Expressions.Expression)

Add field based on which the data will be sorted.

Parameters

expression - System.Linq.Expressions.Expression<Func>

Example


               @(Html.Kendo().DataSource<OrderViewModel>()
                  .Name("dataSource")
                   .Ajax(dataSource => dataSource
                      .Read(read => read.Action("Orders_Read", "DataSource"))
                      .Sort(s=>s.Add(add => add.OrderId)
                   )
            )

Add(System.String)

Add field based on which the data will be sorted.

Parameters

fieldName - System.String

Example


               @(Html.Kendo().DataSource<OrderViewModel>()
                  .Name("dataSource")
                   .Ajax(dataSource => dataSource
                      .Read(read => read.Action("Orders_Read", "DataSource"))
                      .Sort(s=>s.Add("OrderId")
                   )
            )

Add(System.String)

Add field based on which the data will be sorted.

Parameters

memberName - System.String

Example


               @(Html.Kendo().DataSource<OrderViewModel>()
                  .Name("dataSource")
                   .Ajax(dataSource => dataSource
                      .Read(read => read.Action("Orders_Read", "DataSource"))
                      .Sort(s=>s.Add("OrderId")
                   )
            )

In this article
Not finding the help you need?