BrighterTools.Data.Abstractions 1.0.0

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

BrighterTools.Data

Shared data contracts and EF Core repository foundations for BrighterTools-based applications.

These packages provide the common entity, request/result, tenant, and repository primitives that BrighterTools-style application data layers can build on. They are designed to pair with BrighterTools.CodeGenerator output while keeping application persistence, DbContext shape, authorization, and audit behavior owned by the consuming app.

Packages

  • BrighterTools.Data.Abstractions
  • BrighterTools.Data.EFCore

Included primitives

  • IEntity<TKey>
  • ListRequest
  • ServiceResult<T>
  • BaseRepository<TEntity, TKey, TUserId> with tenant enforcement and list filtering helpers

Install

dotnet add package BrighterTools.Data.Abstractions
dotnet add package BrighterTools.Data.EFCore

Design notes

  • ServiceResult<T> and ListRequest are aligned with current app implementations.
  • BaseRepository is application-agnostic and uses extension points (OnBeforeSaveInternal, PersistEntityAsync) for app-specific audit persistence.

More Documentation

Development

dotnet restore .\BrighterTools.Data.slnx --configfile .\NuGet.config
dotnet build .\BrighterTools.Data.slnx -c Release --no-restore
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.
  • net10.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on BrighterTools.Data.Abstractions:

Package Downloads
BrighterTools.Data.EFCore

Entity Framework Core repository foundations for BrighterTools-based applications.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0 109 7/15/2026

v1.0.0 - Initial Release

Initial stable release of the package.

Included:
- Core package functionality.
- Initial public API.
- Documentation and usage examples.

Breaking changes:
- None. This is the first stable release.