blog.toenn-vaot.frHow to generate a database per tenant in multi-tenant system ?The purpose is to be able to create a multi-tenant database system where each tenant have its own database. We will see the different steps to implement this configuration Let’s go, begin with the STARTER KIT ! The database schema in code first First...Oct 12, 2025·7 min read
blog.toenn-vaot.frHow to use IHttpContextAccessor in library project ?Maybe you already encounter this problem. You want to use the IHttpContextAccessor but it is not available and there is no indication to find the right package to use. To solve this situation, you just have to use the Microsoft.AspNetCore.Http.Abstra...Oct 11, 2025·1 min read
blog.toenn-vaot.frWeb.config - Add the intellisenseI previously explain how to create a custom configuration section in a web.config. But something miss if we want to do all the job. If you share the library with your favorites colleagues and the haven't the documentation, it is better to include the...Feb 19, 2024·5 min read
blog.toenn-vaot.frWeb.config - Create your own custom sectionHere's a topic that's really interesting for many developers who like to organize their code a bit. Having a custom configuration section in a configuration file is the best approach when that configuration involves a business need, a connection to a...Feb 19, 2024·6 min read
blog.toenn-vaot.frREST API - Use EF Core to create a paged endpoint quicklyThere is often the question from my colleagues about how to do a quick paged requests on records without typing a lot of SQL code in stored procedure or in code by filtering a collection of records. The answer for this question comes with EF Core but...Feb 19, 2024·3 min read