KamiSama.Repositories.EntityFramework 10.0.11.2

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

KamiSama.Repositories.EntityFramework

Back to package index

Version: 10.0.0

Description

Entity Framework 6 repositories with immediate persistence and ordered-query paging. Use this package to expose tracked EF6 queries through KamiSama repository contracts and produce paged UI or API results.

How to use

dotnet add package KamiSama.Repositories.EntityFramework --version 10.0.0

Construct a repository with an application-owned EF6 context. Mutations save immediately, while queries remain tracked and deferred:

using KamiSama.Extensions.Paging;
using KamiSama.Repositories.EntityFramework;

var repository = new DbRepository<User, AppDbContext>(dbContext);
await repository.AddAsync(new User { Name = "Ada" }, cancellationToken);
PagedResult<User> page = await repository.AsQueryable()
    .OrderBy(user => user.Id)
    .MakePagedAsync(SearchModel.FromPage(1, 20), cancellationToken);

The repository does not own or dispose the context. Each add, update, or delete calls SaveChanges immediately rather than participating in a repository-level unit of work. Queries track entities by default. Paging requires an ordered query, performs a synchronous uncancellable count before cancellable asynchronous materialization, and uses separate count and data queries.

Namespaces

Types

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
10.0.11.9 81 8/24/2026
10.0.11.8 86 8/22/2026
10.0.11.7 89 8/21/2026
10.0.11.6 90 8/19/2026
10.0.11.5 86 8/18/2026
10.0.11.4 95 8/18/2026
10.0.11.3 81 8/18/2026
10.0.11.2 95 8/18/2026
10.0.11.1 89 8/15/2026
10.0.11 102 8/11/2026
10.0.10.2 104 8/4/2026
10.0.10.1 114 7/31/2026
10.0.10 114 7/30/2026
10.0.9 119 6/20/2026
10.0.7 129 5/1/2026
10.0.6 131 4/16/2026
10.0.1 265 11/26/2025
10.0.0 273 11/22/2025
3.1.6 266 11/7/2025
3.1.5 264 11/6/2025
Loading failed