LowCodeHub.QueryableExtensions 0.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package LowCodeHub.QueryableExtensions --version 0.0.1
                    
NuGet\Install-Package LowCodeHub.QueryableExtensions -Version 0.0.1
                    
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="LowCodeHub.QueryableExtensions" Version="0.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="LowCodeHub.QueryableExtensions" Version="0.0.1" />
                    
Directory.Packages.props
<PackageReference Include="LowCodeHub.QueryableExtensions" />
                    
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 LowCodeHub.QueryableExtensions --version 0.0.1
                    
#r "nuget: LowCodeHub.QueryableExtensions, 0.0.1"
                    
#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 LowCodeHub.QueryableExtensions@0.0.1
                    
#: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=LowCodeHub.QueryableExtensions&version=0.0.1
                    
Install as a Cake Addin
#tool nuget:?package=LowCodeHub.QueryableExtensions&version=0.0.1
                    
Install as a Cake Tool

LowCodeHub.QueryableExtensions

LowCodeHub.QueryableExtensions provides reusable query and EF Core building blocks for ASP.NET Core applications.

Features

  • LINQ query extensions for filtering and ordering
  • Pagination models and helpers
  • Specification pattern helpers
  • Lookup entities and query helpers
  • Enum-to-lookup code mapping via LookupCodeAttribute
  • Localization-related value objects and converters
  • EF Core transaction manager with:
    • ExecuteInTransactionAsync
    • ExecuteInTransactionWithRetryAsync
    • optional IsolationLevel overloads

Installation

dotnet add package LowCodeHub.QueryableExtensions

Quick usage

EF Core lookup support

In your DbContext model configuration:

protected override void OnModelCreating(ModelBuilder modelBuilder)
{
    modelBuilder.AddLookupSupport();
    base.OnModelCreating(modelBuilder);
}

In DI registration:

services.AddDbContext<MyDbContext>(options => ...);
services.AddLookupSupport<MyDbContext>();

Transaction manager

services.AddTransactionManager<MyDbContext>();
await transactionManager.ExecuteInTransactionAsync(async scope =>
{
    // data changes
    // auto-commit on success / auto-rollback on failure
});

With retry + isolation level:

await transactionManager.ExecuteInTransactionWithRetryAsync(
    async scope =>
    {
        // data changes
    },
    System.Data.IsolationLevel.ReadCommitted,
    cancellationToken);

Manual commit/rollback is still supported inside scope if needed.

Specifications

var query = dbContext.Users.AsQueryable()
    .WithSpecification(new ActiveUsersSpecification());

Lookups

var options = await lookupRepository.GetOptionsAsync("ORDER_STATUS", "en", cancellationToken: cancellationToken);

Queryable usage is still available:

var options = (await dbContext.Set<LookupItemEntity>()
    .WhereActive()
    .WhereSetCode("ORDER_STATUS")
    .OrderBySortOrder()
    .ToListAsync(cancellationToken))
    .ToLookupOptions("en");

Enum mapping:

public enum OrderStatus
{
    [LookupCode("PENDING")]
    Pending,
    [LookupCode("APPROVED")]
    Approved
}

var code = OrderStatus.Pending.ToCode();
var status = "APPROVED".ToEnum<OrderStatus>();

Best practices

  1. Keep specifications focused and composable.
  2. Use retry transaction API for transient-failure environments.
  3. Normalize lookup codes in persistence and treat them as stable identifiers.
  4. Pass explicit IsolationLevel only when business consistency requires it.
  5. Keep transaction scopes short and side-effect free.
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

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
0.0.6 116 5/19/2026
0.0.5 94 5/18/2026
0.0.3 98 5/12/2026
0.0.2 145 4/23/2026
0.0.1 1,254 3/26/2026