Search code examples
entity-frameworkdatabase-normalization

What normalization form does Entity Framework Code First guaranty, if any?


I'm looking for some information about Entity Framework. Like the title says: What normalization form does Entity Framework Code First guaranty, if any?


Solution

  • Not any at all. It's totally(almost totally atleast) up to you how you design your model/database with EF.

    Entity Framework is only a way to map between the database and your application code.