jgalviz.RepoDb.Specifications 1.0.0

dotnet add package jgalviz.RepoDb.Specifications --version 1.0.0
                    
NuGet\Install-Package jgalviz.RepoDb.Specifications -Version 1.0.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="jgalviz.RepoDb.Specifications" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="jgalviz.RepoDb.Specifications" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="jgalviz.RepoDb.Specifications" />
                    
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 jgalviz.RepoDb.Specifications --version 1.0.0
                    
#r "nuget: jgalviz.RepoDb.Specifications, 1.0.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 jgalviz.RepoDb.Specifications@1.0.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=jgalviz.RepoDb.Specifications&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=jgalviz.RepoDb.Specifications&version=1.0.0
                    
Install as a Cake Tool

RepoDb.Specifications

A lightweight and expressive implementation of the Specification Pattern for RepoDB, designed to encapsulate query logic in a reusable, composable, and testable way.

This library provides first-class support for filtering, sorting, paging, and projection, using RepoDB-native primitives—without relying on IQueryable or LINQ-to-ORM abstractions.


Why RepoDb.Specifications?

As applications grow, query logic tends to become:

  • Duplicated across repositories
  • Hard to test
  • Difficult to evolve
  • Tightly coupled to infrastructure concerns

RepoDb.Specifications allows you to model queries as reusable objects that describe what to query, while repositories focus only on executing those queries.


Key Features

  • ✅ Specification Pattern tailored for RepoDB
  • ✅ Native use of QueryGroup and QueryField
  • ✅ Filtering (WHERE)
  • ✅ Sorting (ORDER BY)
  • ✅ Paging (SKIP / TAKE)
  • ✅ Column projection and DTO mapping
  • ✅ No IQueryable, no hidden LINQ translation
  • ✅ Clean Architecture & DDD friendly
  • ✅ Provider-agnostic (SQL Server, MySQL, PostgreSQL, etc.)

Installation

dotnet add package RepoDb.Specifications

Core Concepts

A Specification:

  • Describes a query
  • Is reusable and composable
  • Does not execute database operations

Specifications are evaluated by repositories or extension methods.


Example Entity

public class Invoice
{
    public long Id { get; set; }
    public bool IsActive { get; set; }
    public decimal Total { get; set; }
    public DateTime IssueDate { get; set; }
    public string CustomerName { get; set; } = string.Empty;
}

Example 1: Simple Filtering Specification

public sealed class ActiveInvoicesSpec : RepoDbSpecification<Invoice>
{
    public ActiveInvoicesSpec()
    {
        Where(new QueryGroup(new[]
        {
            new QueryField(nameof(Invoice.IsActive), true)
        }));
    }
}

Example 2: Filtering + Sorting

public sealed class RecentInvoicesSpec : RepoDbSpecification<Invoice>
{
    public RecentInvoicesSpec(DateTime fromDate)
    {
        Where(new QueryGroup(new[]
        {
            new QueryField(nameof(Invoice.IsActive), true),
            new QueryField(
                nameof(Invoice.IssueDate),
                Operation.GreaterThanOrEqual,
                fromDate)
        }));

        OrderBy(nameof(Invoice.IssueDate), SortDirection.Desc);
    }
}

Example 3: Filtering + Sorting + Paging

public sealed class PagedInvoicesSpec : RepoDbSpecification<Invoice>
{
    public PagedInvoicesSpec(int page, int pageSize)
    {
        Where(new QueryGroup(new[]
        {
            new QueryField(nameof(Invoice.IsActive), true)
        }));

        OrderBy(nameof(Invoice.IssueDate), SortDirection.Desc);

        var skip = (page - 1) * pageSize;
        Page(skip, pageSize);
    }
}

Example 4: Column Projection (SELECT specific fields)


public sealed class InvoiceListSpec : RepoDbSpecification<Invoice>
{
    public InvoiceListSpec()
    {
        Where(new QueryGroup(new[]
        {
            new QueryField(nameof(Invoice.IsActive), true)
        }));

        Select(
            nameof(Invoice.Id),
            nameof(Invoice.IssueDate),
            nameof(Invoice.Total),
            nameof(Invoice.CustomerName)
        );
    }
}

Example 5: Using a Specification in a Repository

public sealed class InvoiceRepository
{
    private readonly IDbConnection _connection;

    public InvoiceRepository(IDbConnection connection)
    {
        _connection = connection;
    }

    public IEnumerable<Invoice> List(IRepoDbSpecification<Invoice> spec)
    {
        return _connection.Query(spec);
    }
}

Usage

var spec = new PagedInvoicesSpec(page: 1, pageSize: 20);
var invoices = invoiceRepository.List(spec);

Example 6: DTO Projection

public sealed class InvoiceListItemDto
{
    public long Id { get; set; }
    public DateTime IssueDate { get; set; }
    public decimal Total { get; set; }
}
var spec = new InvoiceListSpec();

IEnumerable<InvoiceListItemDto> result =
    connection.QueryProjected<InvoiceListItemDto>(spec);

Example 7: Composing Specifications with AND

// Create individual specifications
var activeSpec = new ActiveInvoicesSpec();
var recentSpec = new RecentInvoicesSpec(fromDate: DateTime.Now.AddMonths(-1));

// Combine them using AND logic
var combinedSpec = activeSpec.And(recentSpec);

// Use the combined specification
var invoices = connection.Query(combinedSpec);

How AND works:

  • Criteria from both specifications are merged into a single QueryGroup
  • RepoDB interprets multiple QueryFields in one QueryGroup as AND logic (default)
  • Result: (IsActive = true) AND (IssueDate >= lastMonth)
  • Sorts from the left specification are preferred; if none, right sorts are used
  • SelectFields, Skip, and Take follow the same left-preference rule

Example 8: Chained Composition

// Chain multiple AND compositions
var spec = new ActiveInvoicesSpec()
    .And(new RecentInvoicesSpec(DateTime.Now.AddMonths(-1)))
    .And(new HighValueSpec(minAmount: 5000M));

var invoices = connection.Query(spec);

Advanced: Building Custom OR Specifications

If you need true OR logic, build a custom specification with database-native expressions:

// For OR semantics, use database expressions directly
public sealed class HighValueOrVipSpec : RepoDbSpecification<Invoice>
{
    public HighValueOrVipSpec()
    {
        Where(new QueryGroup(new[]
        {
            new QueryField("(Total > 5000 OR CustomerName = 'VIP')")
        }));
    }
}

var results = connection.Query(new HighValueOrVipSpec());

Alternatively, use Connection.Query() directly for complex OR scenarios:

// Direct query without the specification pattern
var results = connection.Query<Invoice>(
    where: /* your OR criteria */,
    orderBy: /* sorting */
);

License

MIT License

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  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.
  • net8.0

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0 112 2/20/2026

# Changelog - RepoDB.Specifications
All notable changes to this project will be documented in this file.
## [1.0.0]
### Added
- Version 1.0.0 of RepoDB.Specifications released.