ASP.NET 之 EntityFramework实体框架搭建
2018-06-24 00:06:27来源:未知 阅读 ()
前段时间接触了EntityFramework,对ORM框架也是有了初步的认识,现在对其进行一点小总结。
一、ORM简介
对象关系映射(Object Relational Mapping,简称ORM)模式是一种为了解决面向对象与关系数据库存在的互不匹配的现象的技术。简单的说,ORM是通过使用描述对象和数据库之间映射的元数据,将程序中的对象自动持久化到关系数据库中。是不是还是不懂?那我们把ORM拆开来说:
O 创建简单的实体对象,也就是数据Model
R 关系数据库中数据表
M 把实体对象与关系数据库具体数据表关联起来,产生相应的SQL操作
在对象中主要利用 特性 来标识主外键、字段长度、默认值等。
二、EntityFramework的安装
- 在解决方案处单击右键
- 管理解决方案的NuGet程序包
- 在搜索框中搜索EntityFramework
- 勾选要安装的项目
- 安装EF
三、EntityFramework的简单配置
- 对Web.config中的连接数据库的字符串进行配置
<connectionStrings> <add name="DefaultConnection" connectionString="server=.;database=OnLineExamDB;uid=sa;pwd=123456;" providerName="System.Data.SqlClient" /> </connectionStrings>
server=.;代表为本地、OnLineExamDB为我连接的数据库的名称、uid跟pwd是连接数据库的用户密码
- 配置Model层、主键要用[Key]进行标识并引用命名空间System.ComponentModel.DataAnnotations;
-
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Model { public class Class { [Key] //主键要加上[Key],并引用命名空间System.ComponentModel.DataAnnotations; public int ClassID { get; set; } /// <summary> /// 班级名称 /// </summary> public string ClassName { get; set; } } }
在DAL数据层创建DBFactory并继承DbContext,配置Model实体与表的关系
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Data.Entity; using Model; namespace DAL { public class DBFactory : DbContext { public DBFactory() : base("DefaultConnection") { } protected override void OnModelCreating(DbModelBuilder modelBuilder) { //配置Model实体与表的关系 modelBuilder.Entity<Class>().ToTable("Class"); modelBuilder.Entity<Student>().ToTable("Student"); base.OnModelCreating(modelBuilder); } // 班级数据工厂 public DbSet<Class> ClassFactory { get; set; } // 学生数据工厂 public DbSet<Student> StudentFactory { get; set; } } }
- 在BLL业务层中创建StudentService,查询数据库数据
FirstOrDefault为返回序列中的第一个元素,如果没有该元素就返回默认值。
-
namespace BLL { public class StudentService { DBFactory dbFactory = new DBFactory(); public Student GetStudent() { return dbFactory.StudentFactory.FirstOrDefault(); } } }
在Controller中配置
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using BLL; using Model; using OnLineExam.Models; using System.Web.Security; namespace OnLineExam.Controllers { public class UserInfoController : Controller { StudentService StudentService = new StudentService(); public ActionResult Index() { //获取学生Model var student = StudentService.GetStudent(); //存入ViewData用于获取 ViewData["Student"] = student; return View(); } } }
- 添加视图
@using Model; @{ var student = ViewData["Student"] as Student; Layout = null; } <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width" /> <title>Index</title> </head> <body> <div> 学生名称:@student.StudentName </div> <div> 学生编号:@student.StudentNumber </div> </body> </html>
结果显示:
这样一个使用EntityFramework的ORM框架就成功实现了。
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- HTML字符实体与文本格式化标签 2020-03-30
- Cookie SameSite属性介绍及其在ASP.NET项目中的应用 2020-03-28
- HTML实体 2020-03-15
- HTML 字符实体详情 2020-03-14
- Asp.Net 将HTML中通过dom-to-image.js标签div内的内容转化为 2019-03-10
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash