# Finbuckle.MultiTenant **Repository Path**: mirrors_Finbuckle/Finbuckle.MultiTenant ## Basic Information - **Project Name**: Finbuckle.MultiTenant - **Description**: Finbuckle.MultiTenant is an open-source multitenancy middleware library for .NET. It enables tenant resolution, per-tenant app behavior, and per-tenant data isolation. - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2022-01-06 - **Last Updated**: 2026-03-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ![Finbuckle Logo](https://www.finbuckle.com/images/finbuckle-32x32-gh.png) MultiTenant 10.0.4 MultiTenant is an open source multi-tenancy library for modern .NET created and maintained by [Finbuckle LLC](https://www.finbuckle.com). It enables tenant resolution, per-tenant app behavior, and per-tenant data isolation. See [https://www.finbuckle.com/MultiTenant](https://www.finbuckle.com/MultiTenant) for more details and documentation. **This release supports .NET 10.** Beginning with MultiTenant v10, major version releases align with .NET major version releases. New development focuses on the latest MultiTenant release version while critical security and severe bug fixes will be released for prior versions which target .NET versions supported by Microsoft. In general, you should target the version of MultiTenant that matches your .NET version. ## Open Source Support Table of Contents 1. [What's New in v10.0.4](#whats-new) 2. [Open Source Support](#open-source-support) 3. [Quick Start](#quick-start) 4. [Documentation](#documentation) 5. [Sample Projects](#sample-projects) 6. [Build and Test Status](#build-and-test-status) 7. [License](#license) 8. [.NET Foundation](#net-foundation) 9. [Code of Conduct](#code-of-conduct) 10. [Community](#community) 11. [Building from Source](#building-from-source) 12. [Running Unit Tests](#running-unit-tests) ## What's New in v10.0.4 > This section only lists release update details specific to v10.0.4. See > the [changelog file](CHANGELOG.md) for all release update details. ### Bug Fixes * Bump Microsoft.AspNetCore.Authentication.OpenIdConnect and 15 others ([#1104](https://github.com/Finbuckle/Finbuckle.MultiTenant/issues/1104)) ([bcaf705](https://github.com/Finbuckle/Finbuckle.MultiTenant/commit/bcaf7050df1ee8d8ac170a9802e8a0b8f21dd1be)) ## Open Source Support Your support helps keep the project going and is greatly appreciated! Finbuckle.MultiTenant is primarily supported by its [GitHub sponsors](https://github.com/sponsors/Finbuckle) and [contributors](https://github.com/Finbuckle/Finbuckle.MultiTenant/graphs/contributors). Additional support is provided by the following organizations:

Digital Ocean logo

GitHub logo

Jetbrains logo

## Quick Start MultiTenant is designed to be easy to use and follows standard .NET conventions as much as possible. See the [Getting Started](https://www.finbuckle.com/MultiTenant/Docs/GettingStarted) documentation for more details. ## Documentation The library builds on on basic multi-tenant functionality to provide a variety of higher level features. See the [documentation](https://www.finbuckle.com/multitenant/docs) for more details: * [Per-tenant Options](https://www.finbuckle.com/MultiTenant/Docs/Options) * [Per-tenant Authentication](https://www.finbuckle.com/MultiTenant/Docs/Authentication) * [Entity Framework Core Data Isolation](https://www.finbuckle.com/MultiTenant/Docs/EFCore) * [ASP.NET Core Identity Data Isolation](https://www.finbuckle.com/MultiTenant/Docs/Identity) ## Sample Projects A variety of [sample projects](https://github.com/Finbuckle/Finbuckle.MultiTenant/tree/main/samples) are available in the repository. ## Build and Test Status ![Build and Test Status](https://github.com/Finbuckle/Finbuckle.MultiTenant/actions/workflows/ci.yml/badge.svg) ## License This project uses the [Apache 2.0 license](https://www.apache.org/licenses/LICENSE-2.0). See [LICENSE](LICENSE) file for license information. ## .NET Foundation This project is supported by the [.NET Foundation](https://dotnetfoundation.org). ## Code of Conduct This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community. For more information see the [.NET Foundation Code of Conduct](https://dotnetfoundation.org/code-of-conduct) or the [CONTRIBUTING.md](CONTRIBUTING.md) file. ## Community Check out the [GitHub repository](https://github.com/Finbuckle/Finbuckle.MultiTenant) to ask a question, make a request, or peruse the code! ## Building from Source From the command line clone the git repository, `cd` into the new directory, and compile with `dotnet build`. ```bash git clone https://github.com/Finbuckle/Finbuckle.MultiTenant.git cd Finbuckle.MultiTenant cd Finbuckle.MultiTenant dotnet build ``` ## Running Unit Tests Run the unit tests from the command line with `dotnet test` from the solution directory. ```bash dotnet test ```