Thursday, August 2, 2018

Writing Multitenant ASP.NET Core Applications

A multitenant web application is one that responds differently depending on how it is addressed - the tenant. This kind of architecture has become very popular, because a single code base and deployment can serve many different tenants. In this post, I will present some of the concepts and challenges behind multitenant ASP.NET Core apps. Let's consider what it takes to write a multitenant ASP.NET Core app. For the sake of simplicity, let's consider two imaginary tenants, ABC and XYZ. We won't go into all that is involved in writing a multitenant app, but we will get a glimpse of all the relevant stuff that is involved in it.

What Is a Tenant?

A tenant has a specific identity, and an application that responds to a particular tenant behaves differently from another tenant. Specifically, one or more of these may change:



from DZone.com Feed https://ift.tt/2LSuZhv

No comments:

Post a Comment