4
Reply

What is EF Code first?

Arunava Bhattacharjee

Arunava Bhattacharjee

Sep 24, 2014
1.4k
0

    Code First: In the Code First approach, you avoid working with visual model designer (EDMX) completely. You write your POCO classes first and then create database from these POCO classes. Developers who follow the path of Domain-Driven Design (DDD) principles prefer to begin by coding their classes first and then generating the database required to persist their data.

    lakshmana poojary
    September 25, 2014
    1

    Code-first approach allows us to create our custom classes first and based on those custom classes entity framework can generate database automatically for us.

    Adit Pattanayak
    October 30, 2014
    0

    In Entity Frame work Code First means ,you directly write POCO Classes. Data base is created from this POCO Classes.

    Roymon TP
    October 06, 2014
    0

    http://www.dotnet-tricks.com/Tutorial/entityframework/R54K181213-Understanding-Entity-Framework-Code-First-Migrations.html

    Munesh Sharma
    October 01, 2014
    0