摘要: CodeFirst 用中文说是代码优先,此技术可以让我们先写代码,然后由Entity Framework根据我们的代码建立数据库接下来用学生这个例子来演示,有学生表,课程表,和成绩表三张表首先是Model层学生表using System;using System.Collections.Generic;using System.Linq;using System.Web;/**/using System.ComponentModel.DataAnnotations;//验证namespace CodeFirstDemo.Models{ public class Student { ... 阅读全文
posted @ 2013-11-18 14:05 Gyutao 阅读(274) 评论(0) 推荐(0) 编辑