数据存储层在项目Ninesky.DataLibrary中实现,整个项目只有一个类Repository。
Repository中实现增删改查询等方法供业务逻辑层调用,主要功能如下图:
具体步骤
一、添加实体框架的引用
1、打开解决方案,选择项目Ninesky.DataLibrary,在引用上右键,选择管理NuGet程序包。
在NuGet包管理器中的浏览标签中点击EntityFramework,点击右侧栏的安装按钮。
在搜索框输入EntityFramework.zh-Hans,安装假体中文资源包。
二、实现数据仓储类
打开解决方案,选择项目Ninesky.DataLibrary,将Class1.cs重命名为Repository.cs,在文档头添加using System.Data.Entity;将类名重命名为public class Repository。改为public class Repository<T> where T :class
1、DbContext属性
在Repository类中添加如下代码 public DbContext DbContext { get; set; }
2、构造函数
为类中添加够高函数,可以直接传递DbContex。
public Repository() { } public Repository(DbContext dbContext) { DbContext = dbContext; }
3、查找实体方法Find
Find有一个重载。两个方法分别可以根据ID和根据lamdba表达式查找实体。
/// <summary> /// 查找实体 /// </summary> /// <param>实体主键值</param> /// <returns></returns> public T Find(int ID) { return DbContext.Set<T>().Find(ID); } /// <summary> /// 查找实体 /// </summary> /// <param>查询Lambda表达式</param> /// <returns></returns> public T Find(Expression<Func<T,bool>> where) { return DbContext.Set<T>().SingleOrDefault(where); }
4、查找实体列表方法FindList
根据需要FindList进行多次重载
/// <summary> /// 查找实体列表 /// </summary> /// <returns></returns> public IQueryable<T> FindList() { return DbContext.Set<T>(); } /// <summary> /// 查找实体列表 /// </summary> /// <typeparam>排序建类型</typeparam> /// <param>排序表达式</param> /// <param>是否正序</param> /// <returns></returns> public IQueryable<T> FindList<TKey>(Expression<Func<T, TKey>> order, bool asc) { return asc ? DbContext.Set<T>().OrderBy(order) : DbContext.Set<T>().OrderByDescending(order); } /// <summary> /// 查找实体列表 /// </summary> /// <typeparam>排序键类型</typeparam> /// <param>排序键</param> /// <param>是否正序</param> /// <param>获取的记录数量</param> /// <returns></returns> public IQueryable<T> FindList<TKey>(Expression<Func<T, TKey>> order, bool asc,int number) { return asc ? DbContext.Set<T>().OrderBy(order).Take(number) : DbContext.Set<T>().OrderByDescending(order).Take(number); } /// <summary> /// 查找实体列表 /// </summary> /// <param>查询Lambda表达式</param> /// <returns></returns> public IQueryable<T> FindList(Expression<Func<T, bool>> where) { return DbContext.Set<T>().Where(where); } /// <summary> /// 查找实体列表 /// </summary> /// <param>查询Lambda表达式</param> /// <param>获取的记录数量</param> /// <returns></returns> public IQueryable<T> FindList(Expression<Func<T, bool>> where, int number) { return DbContext.Set<T>().Where(where).Take(number); } /// <summary> /// 查找实体列表 /// </summary> /// <typeparam>排序键类型</typeparam> /// <param>查询Lambda表达式</param> /// <param>排序键</param> /// <param>是否正序</param> /// <returns></returns> public IQueryable<T> FindList<TKey>(Expression<Func<T, bool>> where, Expression<Func<T, TKey>> order, bool asc) { return asc ? DbContext.Set<T>().Where(where).OrderBy(order) : DbContext.Set<T>().Where(where).OrderByDescending(order); } /// <summary> /// 查找实体列表 /// </summary> /// <typeparam>排序键类型</typeparam> /// <param>查询Lambda表达式</param> /// <param>排序键</param> /// <param>是否正序</param> /// <param>获取的记录数量</param> /// <returns></returns> public IQueryable<T> FindList<TKey>(Expression<Func<T, bool>> where, Expression<Func<T, TKey>> order, bool asc, int number) { return asc ? DbContext.Set<T>().Where(where).OrderBy(order).Take(number) : DbContext.Set<T>().Where(where).OrderByDescending(order).Take(number); }
5、查找实体分页列表方法FindPageList
根据需要FindPageList进行多次重载