Biss.DbCacheConverter 10.4.1

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

Biss.Db.CacheConverter

© 2026 FOTEC Forschungs- und Technologietransfer GmbH | https://www.fotec.at

What can this NuGet package do?

This NuGet package provides all necessary classes and interfaces for caching database entries to accelerate request processing, such as through REST controllers. It implements a generic caching layer on top of Entity Framework Core models.

How do I use it?

To use this library, install the NuGet package. The DbCacheConverterBase class plays a central role as the foundation for implementing cache converters for individual database tables. You can bundle converter instances and initialize them via Dependency Injection:

\\csharp public class UserCacheConverter : DbCacheConverterBase<User> { public UserCacheConverter(IDbContext dbContext) : base(dbContext) { } }

// In your Startup/Program.cs: services.AddScoped<UserCacheConverter>(); \\

What are the core features?

  • Pre-Implemented Operations - Full CRUD (Create, Read, Update, Delete) operations for database tables
  • Performance Acceleration - Improved request performance through intelligent caching
  • Generic Implementation - Reusable base class for rapid cache converter development
  • Health Checks - Built-in support for ASP.NET Core health check endpoints
  • Swagger/OpenAPI Support - Documentation generation for cached endpoints

Dependencies

Package Version Purpose
Biss.Core Latest Core utilities and base classes
Biss.Db Latest Database foundation and Entity Framework Core integration
Microsoft.EntityFrameworkCore 10.0.2+ ORM and database abstraction framework
Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 10.0.2+ Health check abstractions for monitoring
Swashbuckle.AspNetCore.SwaggerGen 10.1.2+ Swagger/OpenAPI documentation generation
Microsoft.AspNetCore.Authentication.JwtBearer 10.0.2+ JWT bearer authentication for APIs
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 Biss.DbCacheConverter:

Package Downloads
Biss.Apps.Template.DbTemplate

Biss Core SDK

Biss.Apps.Template.ConnectivityHostTemplate

Biss Core SDK

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
10.4.1 60 2/12/2026

Changelog.md