摘要: 1.后台传值: 1 public class DataController : Controller 2 { 3 // GET: Data 4 public ActionResult Index() 5 { 6 //1 ViewData传值 7 ViewData[... 阅读全文
posted @ 2016-09-08 23:58 坚持的阳光 阅读(6961) 评论(0) 推荐(1) 编辑
摘要: 一、创建项目解决方案 1.model层、BLL层、Dal层、Common层,都是类库 2.UI层使用MVC5 二、使用EF链接数据库 1.创建实体数据模型 2.选择来自数据库EF设计器 3.创建数据库链接 4.选是,点击下一步,选择实体框架6.x,下一步选择要创建的表 三、创建Dal层中链接数据库操 阅读全文
posted @ 2016-09-08 17:37 坚持的阳光 阅读(22652) 评论(11) 推荐(3) 编辑
摘要: 一、批量添加数据 1 static void Main(string[] args) 2 { 3 add(); 4 add2(); 5 Console.ReadKey(); 6 } 7 8 static void add() 9 { 10 DemoDbEntities db = new DemoDb 阅读全文
posted @ 2016-09-08 11:21 坚持的阳光 阅读(11807) 评论(1) 推荐(6) 编辑