zoukankan      html  css  js  c++  java
  • Entity Framework Tutorial Basics(12):Model First

    Model First development with Entity Framework:

    In the Model First approach, you create Entities, relationships, and inheritance hierarchies directly on the design surface of EDMX and then generate database from your model.

    So, in the Model First approach, add new ADO.NET Entity Data Model and select Empty EF Designer model in Entity Data Model Wizard.

    Entity Framework Model first

    You can create an entity, association and inheritance on an empty designer by right clicking on designer surface -> Add New -> Entity.

    Entity Framework Model first

    In the Add Entity dialogue, enter name of the entity. Also you can change the default settings for Entity set and key property. We will keep the default settings as it is. Click OK to generate an entity.

    Entity Framework Model first

    You can also add properties in the generated entity by right clicking on entity - > Add New -> Scalar property.

    Entity Framework Model first

    Enter the name of scalar property as shown below.

    Entity Framework Model first

    In the same way, you can add other entities and associations using toolbox.

    Entity Framework Model first

    After creating the required entities, associations, and inheritance on the design surface of the empty model, you can use the designer's context menu option 'Generate database from model' to generate DDL script.

    Entity Framework Model first

    This will open Generate Database Wizard. You can select existing database or create a new connection by clicking on New Connection.. Select database server and enter the name of the database to create and then click OK. It will ask you for the confirmation for creating a new database. Click Yes to create a database.

    Entity Framework Model first

    Click Next to generate DDL for the DB model as shown below.

    Entity Framework Model first

    This will add ModelName.edmx.sql file in the project. You can execute DDL scripts in Visual Studio by opening .sql file -> right click -> Execute.

    Now, you can generate context class and entities by right clicking on the designer and selecting Add Code Generation Item..

    Entity Framework Model first

    This will add (ModelName).Context.tt and (ModelName).tt with context class and entity classes as shown below.

    Entity Framework Model first

    So, in this way, you can design your DB model and then generate a database and classes based on the model. This is called the Model-First approach.

    Visit MSDN for detailed information on Model-First approach.

  • 相关阅读:
    接口的显示实现和隐式实现
    Math.Round和四舍五入
    经典SQL语句大全(转)
    简明添加log4net到项目中
    NAnt学习笔记(3) Properties, Loggers & Listeners
    (转)Groupon前传:从10个月的失败作品修改,1个月找到成功
    Pyramid中如何配置多种URL匹配同一个View
    《IT项目管理》读书笔记(4) —— 项目范围管理
    C#语法糖
    枚举类型转换成字符串
  • 原文地址:https://www.cnblogs.com/purplefox2008/p/5648990.html
Copyright © 2011-2022 走看看