ASP.NET MVC EF 02 数据库访问层的设计
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ASP.NET MVC EF 02 数据库访问层的设计相关的知识,希望对你有一定的参考价值。
1、接口(IBaseRepository(仓储))操作数据库(增删改查),代码如下:
/// <summary> /// 基仓储实现的方法 /// </summary> /// <typeparam name="T"></typeparam> public interface IBaseRepository<T> where T : class,new() { //添加 T AddEntities(T entity); //修改 bool UpdateEntities(T entity); //删除 bool DeleteEntities(T entity); //查询 IQueryable<T> LodeEntities(Func<T, bool> wherelambda); //分页 IQueryable<T> LoadPagerEntities<S>(int pageSize, int pageIndex, out int total, Func<T, bool> wherelambda, bool isAsc, Func<T, S> orderByLambda); }
以上是关于ASP.NET MVC EF 02 数据库访问层的设计的主要内容,如果未能解决你的问题,请参考以下文章
ASP.NET MVC 3 EF 代码优先 - 掌握详细信息 CRUD