20 results for "how-to/date-time-formatting"

Date/time values formatting

/how-to/date-time-formatting

In this article, you can find instructions how to set up different types of date & time formats, with code examples.

Customizing SQL query formats

/how-to/customizing-sql-query-formats

Detailed instruction with various examples of how to operate with different query formats.

JavaScript widgets formats and settings (MVC version)

/tutorials/javascript-widgets-settings-formats

In this article, we describe the most common unique settings for EasyQuery JavaScript widgets and give examples of code.

Managing data formats

/tutorials/managing-data-formats

This article shows how to implement some particular tasks with your query

Utils class

/api-reference-5x/korzh-easyquery-namespace/utils-class

Represents different type conversion functions and other useful procedures

Exporting query results

/tutorials/exporting-query-results

Detailed instruction on how to perform additional functionality while dealing with EasyQuery results.

Utils class

/api-reference-4x/korzh-easyquery-namespace/utils-class

Represents different type conversion functions and other useful procedures

Version 7.0 release notes

/release-notes/version-7-0

Version 7.0 is a major update of both EasyQuery.NET and EasyQuery.JS. We skipped version 6.x for EasyQuery.NET (the previous was 5.4.x) to sync it with the latest version number of EasyQuery.JS and so, to make it clear that version 7.0 of the scripts requires version 7.0 of the server-side packages. The API endpoints for some actions were renamed in the new version. Provided that they both have the same version 7.0.x One of the most expected features implemented in 7.0 was an ability to set the formatting for the result set data. So, with version 7.0 the best approach will be to create an instance of some EasyQueryManager class descendant (for example, EasyQueryManagerSql ) that is the most suitable for your scenario and use its methods and properties for all necessary operations.

Utils class

/api-reference/korzh-easyquery/korzh-easyquery-namespace/utils-class

Represents different type conversion functions and other useful procedures

ODataQueryBuilderFormats class

/api-reference-5x/korzh-easyquery-namespace/odataquerybuilderformats-class

Represents different formats which control ODataQueryBuilder behaviour. This class is empty for now.

LinqQueryBuilderFormats class

/api-reference-5x/korzh-easyquery-linq-namespace/linqquerybuilderformats-class

Represents different formats which control LinqQueryBuilder behaviour. This class is empty for now.

Version 7.2 release notes

/release-notes/version-7-2

Version 7.2 is a minor update of EasyQuery.NET and EasyQuery.JS. In the previous version EntityFramework Core EasyQuery packages (Korzh.EasyQuery.EntityFrameworkCore.Relational and Korzh.EasyQuery.EntityFrameworkCore.Identity) didn't include .NET 6 in the list of target frameworks. Now you can move all configuration for EasyQuery middleware to a special class that implements this interface, register this class in DI and all EasyQuery settings will be applied automatically when needed. It's very useful when you have several EasyQuery endpoints with just a slightly different settings or you need to use the same EasyQuery configuration both in the middleware and some background service. Here is a quick guide on how to set up EasyQuery with IEasyQueryConfigurator: Step 1: On DI setup: Step 2: On EasyQuery middleware setup: For applications that still use Startup.cs: Step 3: MyEasyQueryConfigurator class:.