Skip to content
This repository has been archived by the owner on Dec 14, 2023. It is now read-only.

Latest commit

 

History

History
52 lines (31 loc) · 1.72 KB

README.md

File metadata and controls

52 lines (31 loc) · 1.72 KB

Dime.Kendo

Build Status Dime.Kendo package in Dime.Scheduler feed in Azure Artifacts

Introduction

Server-side models for the Kendo UI library such as filters and sorters.

Getting Started

  • You must have Visual Studio 2019 Community or higher.
  • The dotnet cli is also highly recommended.

About this project

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.

Build and Test

  • Run dotnet restore
  • Run dotnet build
  • Run dotnet test

Installation

Use the package manager NuGet to install Dime.Kendo:

dotnet add package Dime.Kendo

Usage

[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);

Contributing

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.

License

License