码迷,mamicode.com
首页 > 其他好文 > 详细

EF的代码优先设计

时间:2016-06-13 09:58:22      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

接下来用学生这个例子来演示,有学生表,课程表,和成绩表三张表

首先是Model层

学生表

技术分享
技术分享
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
/**/
using System.ComponentModel.DataAnnotations;//验证

namespace CodeFirstDemo.Models
{
    public class Student
    {
        [Key]
        public int Id { get; set; }
        [Required]
        [StringLength(50)]
        public string Name { get; set; }
    }
}
技术分享
技术分享

课程表

技术分享
技术分享
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
/**/
using System.ComponentModel.DataAnnotations;//验证

namespace CodeFirstDemo.Models
{
    public class Course
    {
        [Key]
        public int Id { get; set; }
        [Required]
        [StringLength(50)]
        public string Name { get; set; }
    }
}
技术分享
技术分享

成绩表

技术分享
技术分享
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
/**/
using System.ComponentModel.DataAnnotations;//验证
namespace CodeFirstDemo.Models
{
    public class Score
    {
        [Key]
        public int Id { get; set; }

        public Student Student { get; set; }

        public Course Course { get; set; }

       
    }
}
技术分享
技术分享

[Key]表示在数据库中该字段为主键,[Required]表示不为空,[StringLength]也就是长度了

这一步完成之后,我们要建立一个StudentInfoEntities的类,这个类要继承自DbContext,而DbContext类在System.Data.Entity命名空间下,需引用EntityFramework.dll类库,

如安装不了,可以去Visual Studio Gallery下载,其实,只需要引用一个叫做Entity Framework的dll类库即可

StudentInfoEntities类

技术分享
技术分享
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
/**/
using System.Data.Entity;

namespace CodeFirstDemo.Models
{
    public class StudentInfoEntities:DbContext
    {
        public DbSet<Course> Courses { get; set; }
        public DbSet<Score> Scores { get; set; }
        public DbSet<Student> Students { get; set; }
    }
}
技术分享
技术分享

接着,我们在Web.Config里配置一下数据库的连接字符串

  <connectionStrings>
    <add name="StudentInfoEntities" connectionString="Data Source=.\SQLEXPRESS; User=test;Password=test;Initial Catalog=StudentInfo;Integrated Security=True"
      providerName="System.Data.SqlClient" />
  </connectionStrings>

 

最后,新建一个HomeController

技术分享
技术分享
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
/**/
using CodeFirstDemo.Models;
namespace CodeFirstDemo.Controllers
{
    public class HomeController : Controller
    {
        private StudentInfoEntities db = new StudentInfoEntities();
        public string Index()
        {
            var data = db.Students.ToList();
            return "Database is build success!";
        }

    }
}
技术分享
技术分享

点击调试,触发一下,查看数据库

技术分享

同时,您会发现,在Score表中,自动产生外键关系

 

 

 

 

 

 

EF的代码优先设计

标签:

原文地址:http://www.cnblogs.com/lvdongjie/p/5579570.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!