General.Backend.Shared 1.1.1

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

This project contains elements common to most backend projects. Error handling, robust request handling, standardized requests and responses, a generic interface to implement the repository pattern and a generic class for Core handling.

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 General.Backend.Shared:

Package Downloads
General.Backend.RepositoryPattern

The GenericRepository abstract class implements a generic data repository with the most commonly used methods for creating, updating and retrieving data.

General.Frontend.Shared

This package contains common elements for most FrontEnd projects with Blazor WebAssembly and Radzen. It includes a generic interface to implement the repository sponsor, an abstract class to implement it and 2 classes to handle generic grids.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.1.1 131 4/17/2026
1.1.0 142 4/3/2026
1.0.2 179 2/12/2025
1.0.1 154 1/14/2025
1.0.0 168 1/9/2025

- Replace IMapper dependency with abstract MapToResponse, MapListToResponse, and MapToEntity
methods in GenericCore, removing the AutoMapper package entirely
- Fix bug where GetAllAsync/GetByFilterAsync/GetByDynamicFilterAsync mapped the full tuple
instead of result.PageRecords
- ErrorHandler: prevent internal exception details from leaking to clients; fix structured
logging placeholders; return 400 BadRequest for validation errors instead of 500
- ResilientRequestHandler: set ExceptionsAllowedBeforeBreaking default to 3 (was 0, broke Polly)
- ResponseService: change records default from 1 to 0
- GenericCore.UpdateAsync: fix wrong service name in validation error ("AddAsync" -> "UpdateAsync")
- GenericCore.AddAsync: remove redundant new T() instantiation
- Bump dependencies to .NET 10 targets