Ezocel.RowsQuerier 2.1.0

dotnet add package Ezocel.RowsQuerier --version 2.1.0
                    
NuGet\Install-Package Ezocel.RowsQuerier -Version 2.1.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Ezocel.RowsQuerier" Version="2.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Ezocel.RowsQuerier" Version="2.1.0" />
                    
Directory.Packages.props
<PackageReference Include="Ezocel.RowsQuerier" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Ezocel.RowsQuerier --version 2.1.0
                    
#r "nuget: Ezocel.RowsQuerier, 2.1.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Ezocel.RowsQuerier@2.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Ezocel.RowsQuerier&version=2.1.0
                    
Install as a Cake Addin
#tool nuget:?package=Ezocel.RowsQuerier&version=2.1.0
                    
Install as a Cake Tool

Ezocel RowsQuerier

A powerful server-side data grid engine for .NET. Translates grid requests (filtering, sorting, grouping, pagination) into LINQ expressions executed directly against your IQueryable data source.

Features

  • Server-side filtering with text, numeric, date, and boolean operators
  • Multi-column sorting with chained OrderBy/ThenBy
  • Row grouping with hierarchical support and aggregations (Sum, Avg, Min, Max, Count)
  • Server-side pagination with infinite scrolling support
  • Property projection to optimize query bandwidth
  • Authorization handlers for granular access control
  • Static filters for tenant isolation and data scoping
  • Output transformers to reshape or enrich response data
  • Schema generation exposing column metadata to frontends
  • Zero third-party dependencies in the core library

Installation

dotnet add package Ezocel.RowsQuerier

For ASP.NET Core integration (controllers, endpoints, AG-Grid scheme):

dotnet add package Ezocel.RowsQuerier.AspNetCore

Quick Start

1. Define a connector

A connector is a class decorated with [RowsQuerierConnector] that maps to your data source. Each connector must specify a queryable provider and should have at least one sorted property:

using Ezocel.RowsQuerier;

[RowsQuerierConnector("products", typeof(ProductQueryableProvider),
    PropertyDiscoveryStrategy = PropertyDiscoveryStrategy.TakeAll)]
public class Product
{
    [RowsQuerierProperty(Options = PropertyOptions.SortedDesc)]
    public int Id { get; set; }
    public string Name { get; set; }
    public decimal Price { get; set; }
    public string Category { get; set; }
    public DateTime CreatedDate { get; set; }
    public bool IsAvailable { get; set; }
}

The queryable provider implements IQueryableProvider<T> and returns your data source:

public class ProductQueryableProvider(AppDbContext db) : IQueryableProvider<Product>
{
    public IQueryable<Product> GetQueryable() => db.Products.AsNoTracking();
}

2. Register RowsQuerier

builder.Services.AddRowsQuerier()
    .SetLicenseKey("RQ-bKiORbm-aFfFzzM-uQuwcJ0")
    .AddConnectors(typeof(Program).Assembly);

Or register a connector inline with a lambda:

builder.Services.AddRowsQuerier()
    .SetLicenseKey("RQ-bKiORbm-aFfFzzM-uQuwcJ0");
    .AddConnector<Product>("products",
        provideQueryable: sp => sp.GetRequiredService<AppDbContext>().Products,
        optionsBuilder: options => options.SetPropertyDiscoveryStrategy(PropertyDiscoveryStrategy.TakeAll));

3. Query your data

var querier = serviceProvider.GetRequiredService<RowsQuerier>();
var response = await querier.GetRowsAsync(new GetRowsRequest
{
    ConnectorName = "products",
    StartRow = 0,
    RowsCount = 50
});

Documentation

Full documentation, examples, and guides are available at rowsquerier.com/documentation.

License

This package is provided under the Ezocel RowsQuerier Software License Agreement. Free for development and evaluation. A purchased license key is required for production use. Visit rowsquerier.com for details.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Ezocel.RowsQuerier:

Package Downloads
Ezocel.RowsQuerier.AspNetCore

ASP.NET Core integration for Ezocel RowsQuerier. Provides a built-in API controller, AG-Grid scheme with automatic JavaScript bootstrapper generation, and HTTP response optimizations.

Ezocel.RowsQuerier.EntityFrameworkCore

Entity Framework Core integration for Ezocel RowsQuerier. Registers your DbContext as the default queryable provider so connectors automatically resolve their data via DbContext.Set<T>().AsNoTracking().

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.1.0 140 4/15/2026