Storing translations in a database: The right way!

Storing translations in a database: The right way!

When you are creating a website (or a webshop) targeting multiple countries and languages, you want to provide your visitors with localized content. For example in a webshop where you want to manage your products, some properties of the products are language invariant but others have to be translated. Because you keep all these products in a database you want to find an efficient way to store this information…

Read this article

Inheritance with Entity Framework

Inheritance with Entity Framework

When we are using Enitity Framework code first to define our model, chances are that we will probably want to use some inheritance here and there. Using migrations to create our database there, are different ways to define this inheritance in our database. I will show you the most commonly used ways of generating tables based on inherited classes.…

Read this article