Tapis.Core.Infrastructure 1.0.4

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

Tapis.Core.Infrastructure

ASP.NET Core middleware, EF Core audit/concurrency interceptorları, Refit ürün API client'ları, permission attribute'ları, TapisExceptionHandler, IServiceExceptionHandler uygulaması ve isteğe bağlı Elasticsearch ILogger sağlayıcısı (AddTapisElasticsearch).

Tapis.Core.Shared üzerine ProjectReference.

1.0.4'ten itibaren Guid damga üreten VersiyonSaveChangesInterceptor ve modelBuilder.ConfigureVersiyonluEntities() uzantısı kaldırıldı: damga PostgreSQL'in xmin sistem sütunu (PERSISTENCE-STANDARDS §8).

Yerine modelBuilder.ConfigureXminConcurrency() geldi. Ürün DbContext'i bunu OnModelCreating sonunda, kendi yapılandırmalarından sonra çağırır:

protected override void OnModelCreating(ModelBuilder modelBuilder)
{
    base.OnModelCreating(modelBuilder);
    // ... ürünün kendi yapılandırmaları
    modelBuilder.ConfigureXminConcurrency();
}

Uzantı tabloya eşlenmiş her entity'ye xmin gölge özelliğini concurrency token olarak bağlar; owned, anahtarsız ve türetilmiş TPH tiplerini atlar. Satıra yeni bir sütun eklenmez — xmin PostgreSQL'in zaten tuttuğu sistem sütunudur.

Paket Npgsql'e bağımlı değildir: Npgsql'in UseXminAsConcurrencyToken() yardımcısı 10.0.0'da kaldırıldığı için eşleme elle kuruluyor ve kullanılan API'lerin hepsi EF Core / EF Relational.

Audit interceptor (AuditSaveChangesInterceptor) ve IServiceExceptionHandler değişmedi.

Target Framework

  • .NET 10

Installation

dotnet add package Tapis.Core.Infrastructure
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
1.0.5 53 9/21/2026
1.0.4 47 9/20/2026
1.0.3 130 9/5/2026
1.0.2 92 9/1/2026
1.0.0 122 8/28/2026

Breaking: Guid Versiyon SaveChanges interceptor ve ConfigureVersiyonluEntities model builder uzantısı kaldırıldı; yerine ConfigureXminConcurrency geldi — damga artık PostgreSQL xmin sistem sütunu (PERSISTENCE-STANDARDS §8). Eşleme Core'da duruyor ki Master ve ServiceManagement aynı kodu ayrı ayrı yazmasın. Npgsql bağımlılığı eklenmedi: Npgsql'in UseXminAsConcurrencyToken yardımcısı 10.0.0'da kaldırıldığı için eşleme zaten elle kuruluyor ve kullanılan API'lerin hepsi EF Core / EF Relational. Audit interceptor ve service exception handler değişmedi.