Getting Started
There are three main packages available for Gridify on NuGet:
TIP
If you are using Entity Framework in your project, install the Gridify.EntityFramework package instead of Gridify.
This package provides the same functionality as the Gridify package but is optimized for Entity Framework compatibility.
TIP
To use Gridify with Elasticsearch, install the Gridify.Elasticsearch package.
If you are developing in a JavaScript or TypeScript environment and need to create dynamic queries on the client side for server-side operations, Gridify also offers a lightweight client library. gridify-client
Installation
dotnet add package Gridify --version 2.19.0dotnet add package Gridify.EntityFramework --version 2.19.0dotnet add package Gridify.Elasticsearch --version 2.19.0npm i gridify-clientNamespace
After installing the package, you can use the Gridify namespace to access the package classes and static Extension methods.
using Gridify;How to use
There are two ways to start using Gridify:
- Using the Extension methods
- Using QueryBuilder