Fading Coder

One Final Commit for the Last Sprint

Implementing Complex Types in Entity Framework Code First

In Entity Framwork (EF) Code First development, a Complex Type is a class that serves as a container for properties but lacks its own identity (i.e., it does not have a primary key). Unlike standard entity types, complex types are not mapped to their own database tables. Instead, their properties ar...

Database Migration Workflow in Entity Framework Core

When utilizing the Code-First approach in Entity Framework Core, the data model rarely remains static after the initial deployment. Adding properties to entities, altering relationships, or introducing new tables requires a systematic mechanism to synchronize these structural changes with the underl...