EF CodeFirst 不得不说的Where与OrderBy
先来聊上5毛钱的“排序”
Code:
using (ApplicationDbContext Db=new ApplicationDbContext())
{
var res = Db.Threes.OrderBy(t => t.Id);
}
So Easy。现实往往不是这样的,有时我们需要让它灵活一点,如下这样方在一个函数里
Code:
public List<ApplicationDbContext.Three> GetAll()
{
using (ApplicationDbContext Db = new ApplicationDbContext())
{
return Db.Threes.OrderBy(t => t.Id).ToList();
}
}
显然这个代码是不灵活的,如果我们不想按照ID排序了,再去写一个方法就不好了。为了灵活我们可以把排序写在外面,在里面调用。怎样才能在方法里执行外面的排序?委托就可以
Code:
public ActionResult Index()
{
GetAll(db => db.OrderBy(t => t.Id));//注释1:随意设置排序字段
return View();
}
public IOrderedQueryable<ApplicationDbContext.Three> GetAll(Func<IQueryable<ApplicationDbContext.Three>,IOrderedQueryable<ApplicationDbContext.Three>> order)
{
using (ApplicationDbContext Db = new ApplicationDbContext())
{
var data = Db.Threes.Select(t => new ApplicationDbContext.Three { Id = t.Id });
return order(data);
}
}
在注释1的地方OrderBy里的表达式就可以改变排序的字段。这样就比灵活了许多。这样还是不够灵活,很多情况下我们的排序字段是前端传过来的。IQueryable的扩转方法OrderBy接受一个表达式类型的参数,我们可以把前端传过来的值生成一个表达式
Code:
生成表达式
private static LambdaExpression GetLambdaExpression<T>(string propertyName)
{
ParameterExpression parameter = Expression.Parameter(typeof(T));
MemberExpression body = Expression.Property(parameter, propertyName);
return Expression.Lambda(body, parameter);
}
排序方法
public static IOrderedQueryable<T> OrderBy<T>(IQueryable<T> source, string propertyName)
{
dynamic orderByExpression = GetLambdaExpression<ApplicationDbContext.Three>(propertyName);
return Queryable.OrderBy(source, orderByExpression);
}
使用例子
public ActionResult Index()
{
GetAll("Id");
return View();
}
public List<ApplicationDbContext.Three> GetAll(string orderByName)
{
using (ApplicationDbContext Db = new ApplicationDbContext())
{
var data = Db.Threes.Where(t => t.Id > 0);
return OrderBy(data,orderByName).ToList();}
}
}
在排序方法里我们调用了生成表达式方法,把结果返回给动态类型变量,这样做是为了解决类型不对应的问题。最后调用Queryable.OrderBy方法把数据以及表达式作为参数。为了使用方便,我们把OrderBy方法改成扩展方法,加个this就可以了。
排序方法
public static IOrderedQueryable<T> OrderBy<T>(this IQueryable<T> source, string propertyName)
{
dynamic orderByExpression = GetLambdaExpression<ApplicationDbContext.Three>(propertyName);
return Queryable.OrderBy(source, orderByExpression);
}
使用例子
using (ApplicationDbContext Db = new ApplicationDbContext())
{
var data = Db.Threes.OrderBy1("Id").ToList();
}
是不是简单了很多。
再来聊聊“Where”
Code:
using (ApplicationDbContext Db = new ApplicationDbContext())
{
Db.Threes.Where(t => t.Id == 1);
}
这样写如果我们想要再加一个条件该怎么办呢。
Db.Threes.Where(t => t.Id == 1).Where(t => t.Text == "");
这样连续的Where都是“and”如果想要“or”该怎么办呢,还是要依赖于表达式
Code:
生成表达式
public static class PredicateBuilder
{
public static Expression<Func<T, bool>> True<T>() { return f => true; }
public static Expression<Func<T, bool>> False<T>() { return f => false; }
public static Expression<Func<T, bool>> Or<T>(this Expression<Func<T, bool>> expr1, Expression<Func<T, bool>> expr2)
{
var invokedExpr = Expression.Invoke(expr2, expr1.Parameters.Cast<Expression>());
var ExBody = Expression.Or(expr1.Body, invokedExpr);
return Expression.Lambda<Func<T, bool>>
(ExBody, expr1.Parameters);
}
public static Expression<Func<T, bool>> And<T>(this Expression<Func<T, bool>> expr1, Expression<Func<T, bool>> expr2)
{
var invokedExpr = Expression.Invoke(expr2, expr1.Parameters.Cast<Expression>());
return Expression.Lambda<Func<T, bool>>
(Expression.And(expr1.Body, invokedExpr), expr1.Parameters);
}
}
使用例子
var predicate = PredicateBuilder.False<ApplicationDbContext.Three>();
predicate = predicate.Or(p => p.Text== "2");
redicate = predicate.Or(p => p.Text == "1");
var func = predicate.Compile();//注释一
using (ApplicationDbContext Db = new ApplicationDbContext())
{
Db.Threes.Where(func);
}
这就就可以收索出Text是“2”或者是“1”的数据了。其实这样有一个问题,看注释一,这是把表达式生成委托传递进去的,所以是把全部数据加载到内存后筛选结果的。那如何才能不加载全部数据呢,请看下面。
Code:
从新绑定参数
public class ParameterRebinder : ExpressionVisitor
{
private readonly Dictionary<ParameterExpression, ParameterExpression> map;
public ParameterRebinder(Dictionary<ParameterExpression, ParameterExpression> map)
{
this.map = map ?? new Dictionary<ParameterExpression, ParameterExpression>();
}
public static Expression ReplaceParameters(Dictionary<ParameterExpression, ParameterExpression> map, Expression exp)
{
return new ParameterRebinder(map).Visit(exp);
}
protected override Expression VisitParameter(ParameterExpression p)
{
ParameterExpression replacement;
if (map.TryGetValue(p, out replacement))
{
p = replacement;
}
return base.VisitParameter(p);
}
}
生成表达式
public static class PredicateBuilder
{
public static Expression<Func<T, bool>> True<T>() { return f => true; }
public static Expression<Func<T, bool>> False<T>() { return f => false; }
public static Expression<T> Compose<T>(this Expression<T> first, Expression<T> second, Func<Expression, Expression, Expression> merge)
{
var map = first.Parameters.Select((f, i) => new { f, s = second.Parameters[i] }).ToDictionary(p => p.s, p => p.f);
var secondBody = ParameterRebinder.ReplaceParameters(map, second.Body);
return Expression.Lambda<T>(merge(first.Body, secondBody), first.Parameters);
}
public static Expression<Func<T, bool>> And<T>(this Expression<Func<T, bool>> first, Expression<Func<T, bool>> second)
{
return first.Compose(second, Expression.And);
}
public static Expression<Func<T, bool>> Or<T>(this Expression<Func<T, bool>> first, Expression<Func<T, bool>> second)
{
return first.Compose(second, Expression.Or);
}
}
使用例子
var predicate = PredicateBuilder.False<ApplicationDbContext.Three>();
predicate = predicate.Or(p => p.Text != "2");
using (ApplicationDbContext Db = new ApplicationDbContext())
{
Db.Threes.Where(predicate);
}
此方法和上面的方法关键都是替换表达的参数,保证每一个表达式的参数都是同一个。
上面的方法是采用Expression.Invoke实现统一参数的,因为使用了Expression.Invoke,所以要编译成可执行代码,转换成委托,这样就要先全部加载数据到内存后处理了。现在的方法是采用重写ExpressionVisitor里的VisitParameter方法来实现参数统一的。
这样就实现了我们先要的,可是很多情况下,查询条件也是从前端传递过来的。那我们如何实现这样的需求呢。上神器:Linq 动态查询库,System.Linq.Dynamic
URL:http://dynamiclinq.codeplex.com/documentation
Code:
使用例子
using (ApplicationDbContext Db = new ApplicationDbContext())
{
var lala = Db.Threes.Where("Id!=2").OrderBy("Id");
}
不单单支持Where、OrderBy还有GroupBy、Selec、Ski、Take、Union等扩展方法
是不是很爽,是不是恨我没有一开始就写这个。
2016年:让我们更努力一点,梦想更靠近一点,把时间更多的浪费在美好的事物上面。
EF CodeFirst 不得不说的Where与OrderBy的更多相关文章
- 1.【使用EF Code-First方式和Fluent API来探讨EF中的关系】
原文链接:http://www.c-sharpcorner.com/UploadFile/3d39b4/relationship-in-entity-framework-using-code-firs ...
- [.NET领域驱动设计实战系列]专题一:前期准备之EF CodeFirst
一.前言 从去年已经接触领域驱动设计(Domain-Driven Design)了,当时就想自己搭建一个DDD框架,所以当时看了很多DDD方面的书,例如领域驱动模式与实战,领域驱动设计:软件核心复杂性 ...
- [转]Using Entity Framework (EF) Code-First Migrations in nopCommerce for Fast Customizations
本文转自:https://www.pronopcommerce.com/using-entity-framework-ef-code-first-migrations-in-nopcommerce-f ...
- EF CodeFirst 如何通过配置自动创建数据库<当模型改变时>
最近悟出来一个道理,在这儿分享给大家:学历代表你的过去,能力代表你的现在,学习代表你的将来. 十年河东十年河西,莫欺少年穷 学无止境,精益求精 本篇为进阶篇,也是弥补自己之前没搞明白的地方,惭愧 ...
- EF CodeFirst增删改查之‘CRUD’
最近悟出来一个道理,在这儿分享给大家:学历代表你的过去,能力代表你的现在,学习代表你的将来. 十年河东十年河西,莫欺少年穷 学无止境,精益求精 本篇旨在学习EF增删改查四大操作 上一节讲述了EF ...
- EF CodeFirst 创建数据库
最近悟出来一个道理,在这儿分享给大家:学历代表你的过去,能力代表你的现在,学习代表你的将来. 十年河东十年河西,莫欺少年穷 学无止境,精益求精 话说EF支持三种模式:Code First M ...
- 新年奉献MVC+EF(CodeFirst)+Easyui医药MIS系统
本人闲来无事就把以前用Asp.net做过的一个医药管理信息系统用mvc,ef ,easyui重新做了一下,业务逻辑简化了许多,旨在加深对mvc,ef(codefirst),easyui,AutoMap ...
- EF Codefirst 初步学习(二)—— 程序管理命令 更新数据库
前提:搭建成功codefirst相关代码,参见EF Codefirst 初步学习(一)--设置codefirst开发模式 具体需要注意点如下: 1.确保实体类库程序生成成功 2.确保实体表类库不缺少 ...
- EF CodeFirst系列(3)---EF中的继承策略(暂存)
我们初始化数据库一节已经知道:EF为每一个具体的类生成了数据库的表.现在有了一个问题:我们在设计领域类时经常用到继承,这能让我们的代码更简洁且容易管理,在面向对象中有“has a”和“is a”关系 ...
随机推荐
- 笔记本电脑 联想 Thinkpad E420 无法打开摄像头怎么办
1 计算机管理-右击USB视频设备(应该显示为黄色问号,表示驱动安装不成功),点击浏览计算机以查找驱动程序软件 2 选择"从计算机的设备驱动程序列表中选择",然后选择Microso ...
- td里面嵌套img标签后如何消除图片间隔
td里面嵌套image标签后如何消除图片间隔 CreateTime--2018年3月7日16:18:12 Author:Marydon 情景还原: <body> <div sty ...
- Hdu2111
<span style="color:#6600cc;">/* J - Saving HDU Time Limit:1000MS Memory Limit:32768K ...
- oracle 11g GRID 中 关于 OLR 须要知道的一些内容
oracle 11g GRID 中 关于 OLR 须要知道的一些内容 1.检查olr 的状态: [root@vmrac1 ~]# ocrcheck -local Status of Oracle ...
- 为何被主流抛弃-江西IDC机房价格为何居高不下缺少竞争力-2014年5月江西IDC排行榜
经常有人问江西IDC排行榜,为什么江西市场缺乏活力. 榜单调研者们有时仅仅能表示无解和无奈. 在IDC领域,其实已经形成了一二三线的城市之分. 一线城市是以上海.北京.深圳为代表的拥有最早国际宽 ...
- TCP/IP具体解释学习笔记——数据链路层(2)
五 Wireless LANs(Wi-Fi) 现在很流行的一种接入互联网的方式就是Wi-Fi了.我们用的ipad.手机.笔记本电脑等等都能够用这样的方式接入互联网,很方便灵活.一个典型的Wi-Fi网络 ...
- Eclipse 常用快捷键及使用技巧
做 java 开发的,经常会用 Eclipse 或者 MyEclise 集成开发环境,一些实用的 Eclipse 快捷键和使用技巧,可以在平常开发中节约出很多时间提高工作效率,下面我就结合自己开发中的 ...
- oracle type类型
转载 http://blog.sina.com.cn/s/blog_6cfb6b090100ve92.html 转自网络,具体用法我会再细化 1.概念 方法:是在对象类型说明中用关键字 MEM ...
- bzoj 2067 [ Poi 2004 ] SZN —— 二分
题目:https://www.lydsy.com/JudgeOnline/problem.php?id=2067 问题1:贪心考虑,应该是每个点的儿子尽量两两配对,如果剩一个就和自己合并向上,所以 a ...
- shell脚本执行错误:#!/bin/bash: No such file or directory
执行.sh脚本时控制台报错 : #!/bin/bash: No such file or directory 解决办法: cat -A 文件路径 会发现第一行有问题 M-oM-;M-?#!/bin/b ...