CaeriusNet 10.0.0.6-alpha

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

CaeriusNet Source Generator

CaeriusNet Source Generator is a powerful .NET tool that automatically generates DTO (Data Transfer Object) mappers and TVP (Table-Valued Parameter) converters, streamlining the development process for .NET applications.

Features

  • DTO Generation: Automatically generates DTO mapping functionality for classes and records
  • SQL Type Mapping: Built-in support for mapping .NET types to SQL Server data types
  • Nullable Support: Handles nullable types appropriately in both C# and SQL contexts
  • Constructor & Property Support: Works with both constructor parameters and public properties
  • Attribute-Based: Simple to use with the [GenerateDto] attribute

Installation

Install the package via NuGet:

CaeriusNet Redis Integration Guide

CaeriusNet supports Redis caching with both traditional connection string and Aspire integration approaches.

Traditional Redis Integration

To use Redis with a connection string:

// In your startup or program file
services.AddCaeriusNet("your-sql-connection-string")
        .AddCaeriusRedisCache("your-redis-connection-string");

// Use Redis caching in stored procedure calls
var result = await dbContext.ExecuteStoredProcedureAsync<YourResultType>(
    new StoredProcedureParametersBuilder("YourStoredProcedureName")
        .AddParameter("@param1", value1, SqlDbType.NVarChar)
        .AddRedisCache("your-cache-key", TimeSpan.FromMinutes(10))
        .Build()
);
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 (3)

Showing the top 3 NuGet packages that depend on CaeriusNet:

Package Downloads
CaeriusNet.Aspire

.NET Aspire SQL Server and Redis integration for CaeriusNet with health checks and OpenTelemetry wiring.

CaeriusNet.Redis

Async Redis cache integration for CaeriusNet with typed AOT-safe codecs and a versioned binary envelope.

CaeriusNet.Contracts

SQL Server AutoContracts discovery tool, manifest integration, and opt-in buildTransitive targets for CaeriusNet.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
11.2.0 0 8/21/2026
11.1.2 119 8/3/2026
11.1.1 138 7/6/2026
11.1.0 133 5/15/2026
11.0.3 130 4/28/2026
11.0.2 121 4/26/2026
11.0.1 117 4/21/2026
11.0.0 115 4/20/2026
10.3.0 115 4/19/2026
10.2.1 112 4/19/2026
10.1.3 139 2/20/2026
10.1.2 292 1/22/2026
10.1.0 277 12/19/2025
10.0.1 226 12/5/2025
10.0.0.8-alpha 192 11/2/2025
10.0.0.7-alpha 194 10/29/2025
10.0.0.6-alpha 186 10/29/2025
10.0.0.5-alpha 198 10/29/2025
10.0.0.4-alpha 195 10/28/2025
10.0.0 339 11/12/2025
Loading failed