Server-side models for the Kendo UI library such as filters and sorters.
- You must have Visual Studio 2019 Community or higher.
- The dotnet cli is also highly recommended.
The most notable types in this assembly include:
Filter
Sort
These classes are useful when a ASP.NET (Core) Web API is used as a proxy to Kendo UI's widgets. They can be declared in the action's parameters.
- Run dotnet restore
- Run dotnet build
- Run dotnet test
Use the package manager NuGet to install Dime.Kendo:
dotnet add package Dime.Kendo
[HttpPost]
[Route(Routes.Appointments.Get)]
public async Task<IPage<BackOfficeAppointmentDto>> Get([FromBody]DataSourceRequest request)
=> await Service.GetAsync(request.Take, request.Skip, request.Page, request.PageSize, request.Filter, request.Sort);
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.