TCIS.MultiTenancy.EntityFrameworkCore
1.0.0-rc.9
dotnet add package TCIS.MultiTenancy.EntityFrameworkCore --version 1.0.0-rc.9
NuGet\Install-Package TCIS.MultiTenancy.EntityFrameworkCore -Version 1.0.0-rc.9
<PackageReference Include="TCIS.MultiTenancy.EntityFrameworkCore" Version="1.0.0-rc.9" />
<PackageVersion Include="TCIS.MultiTenancy.EntityFrameworkCore" Version="1.0.0-rc.9" />
<PackageReference Include="TCIS.MultiTenancy.EntityFrameworkCore" />
paket add TCIS.MultiTenancy.EntityFrameworkCore --version 1.0.0-rc.9
#r "nuget: TCIS.MultiTenancy.EntityFrameworkCore, 1.0.0-rc.9"
#:package TCIS.MultiTenancy.EntityFrameworkCore@1.0.0-rc.9
#addin nuget:?package=TCIS.MultiTenancy.EntityFrameworkCore&version=1.0.0-rc.9&prerelease
#tool nuget:?package=TCIS.MultiTenancy.EntityFrameworkCore&version=1.0.0-rc.9&prerelease
TCIS.MultiTenancy.EntityFrameworkCore
The library providing a storage mechanism (Store) and management for Tenant information in a Multi-Tenancy system using Entity Framework Core. This library seamlessly integrates with Finbuckle.MultiTenant to manage tenant configurations from the database.
📦 Installation
dotnet add package TCIS.MultiTenancy.EntityFrameworkCore
🚀 Configuration and Registration (Program.cs)
You can register the EFCoreStore into the Multi-Tenancy configuration chain by using WithEFCoreStore.
using TCIS.MultiTenancy.EntityFrameworkCore.Extensions;
using TCIS.MultiTenancy.Abstractions;
using TCIS.MultiTenancy.EntityFrameworkCore.Stores;
var builder = WebApplication.CreateBuilder(args);
// Declare the EF Core Store
builder.Services.AddMultiTenant<TenantInfo>()
.WithHeaderStrategy()
// Store and retrieve Tenant information from the Database via an EF Core DbContext
.WithEFCoreStore<MyTenantDbContext, TenantInfo>();
var app = builder.Build();
app.Run();
💡 Usage
1. Inheriting EFCoreStoreDbContext
You need to create a DbContext that manages Tenant information by inheriting from EFCoreStoreDbContext<TTenantInfo> provided by the library:
using Microsoft.EntityFrameworkCore;
using TCIS.MultiTenancy.Abstractions;
using TCIS.MultiTenancy.EntityFrameworkCore.Stores;
public class MyTenantDbContext : EFCoreStoreDbContext<TenantInfo>
{
public MyTenantDbContext(DbContextOptions<MyTenantDbContext> options)
: base(options)
{
}
}
2. Table Structure
By default, the TenantInfo entity will contain the necessary information about a Tenant (Id, Identifier, Name, ConnectionString...). When using EFCoreStore, the library will directly query this Tenant storage table to configure the system for each incoming request.
Cache Warning:
- The application's
DbContexts (not the DbContext storing Tenant info) must ensure that the Model Cache Key properly handles the Isolation Tier to prevent data leaks or RAM overflow.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. 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. |
-
net8.0
- Microsoft.EntityFrameworkCore (>= 8.0.13)
- Microsoft.EntityFrameworkCore.Relational (>= 8.0.13)
- Microsoft.Extensions.Caching.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Caching.Memory (>= 8.0.1)
- Microsoft.Extensions.Configuration (>= 9.0.0)
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 9.0.0)
- Microsoft.Extensions.DependencyInjection (>= 9.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.0)
- Microsoft.Extensions.Hosting.Abstractions (>= 9.0.0)
- Microsoft.Extensions.Http (>= 9.0.0)
- Microsoft.Extensions.Logging (>= 9.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.0)
- Microsoft.Extensions.Options (>= 9.0.0)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 9.0.0)
- TCIS.Core (>= 1.0.0-rc.9)
- TCIS.MultiTenancy (>= 1.0.0-rc.9)
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.0-rc.9 | 25 | 7/21/2026 |
| 1.0.0-rc.8 | 27 | 7/21/2026 |
| 1.0.0-rc.7 | 43 | 7/17/2026 |
| 1.0.0-rc.6 | 54 | 7/7/2026 |
| 1.0.0-rc.5 | 59 | 7/7/2026 |
| 1.0.0-rc.4 | 67 | 6/24/2026 |
| 1.0.0-rc.2 | 71 | 5/12/2026 |
| 1.0.0-rc.1 | 61 | 5/12/2026 |