20 results for "how-to/add-aggregate-function"

Add a new aggregate function

/how-to/add-aggregate-function

EasyQuery allows to add new aggregate functions for user's need. Here is detailed manual of how to do it with code example.

Aggregate data

/tutorials/aggregate-data

From this article you will see how to aggregate (count, sum, etc.) data in your queries.

Add query builder page from our MVC sample project in your own app

/how-to/mvc-query-builder-view-in-your-app

This article described how to set up an advanced search page in your web-application using EqMvcDemoDB project as a template.

Changelog

/changelog

Contains the full list of all changes in the EasyQuery packages.

EasyQuery.JS widgets localization

/tutorials/javascript-widgets-localization

Localization / internationalization tasks for EasyQuery widgets. How to add new locale, how to set current locale, how to switch widgets language on-the-fly.

EasyQueryOptions class

/api-reference-5x/korzh-easyquery-services-namespace/easyqueryoptions-class

Contains various options used in EasyQueryMiddleware, EasyQueryManager and other classes.

EasyQueryOptions class

/api-reference/korzh-easyquery/korzh-easyquery-services-namespace/easyqueryoptions-class

Contains various options used in EasyQueryMiddleware, EasyQueryManager and other classes.

Getting started for ASP.NET Core + MVC or Razor pages

/getting-started/aspnet-core-razor

How to use install EasyQuery to your ASP.NET Core project with Razor Pages or MVC.

Custom client-side dialogs

/tutorials/custom-javascript-dialogs-saving-loading

Users who use some other dialogs libary usually want to replace those default dialogs with their own. We are going to replace those default dialogs with nice HTML dialogs made with JQuery UI dialogs library. The approach we will use is quite simple: our AdvancedSearchView JavaScript class has several methods which can be "overriden" to replace the default behavior with your own implemenation of those dialogs. In case of using JQuery dialogs we need to define some placeholders (read div elements) on our page where our new dialogs will be rendered. Here is an example: NB: Please note that this step is specific for JQuery dialogs.

Getting started for ASP.NET 4

/getting-started/asp-net-4-mvc-or-webforms

Describes the steps you need to perform for applying EasyQuery ASP.NET to your MVC or WebForms project

Creating data model dynamically with code

/how-to/create-data-model-dynamically-with-code

-Data Model- object is an essential part of EasyQuery framework. However, sometimes you need to add some entities, entity attributes or operators to the existing model or to fill it from scratch using DB metadata information got from another source. In these cases, you can use EasyQuery API to build the model dynamically. Finally, we add entities and entity attributes. Here is an example of creatin a small data model: two tables (Customers and Orders) with one link between them, 2 entities (Customer and Order correpondingly) and a few attributes in each entity.

Getting started for ASP.NET Core + React project

/getting-started/aspnet-core-react

How to use EasyQuery library in React.js project with ASP.NET Core backend.