-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Mastering Entity Framework Core 2.0
By :

The people living in a gated community could be easily related with the term multi-tenancy. We will be having multiple families living in their own flat/home (a user) within a building/phase (a tenant); together, they will form a gated community that is nothing but multi tenancy. In software terminology, a system supporting a set of users grouped together as a tenant (based on roles) would have their data stored in a single or shared database, and still serving data based on the tenant is called multi-tenancy.
The multi-tenancy application can be classified as follows:
We will explore each one of the applications individually in the next sub-sections.
The standalone model deals with an individual application and its own database, isolating everything from different tenants, right from database to the application. It helps the developers to customize the application and have different schema for different customers, which...