Expression<Func<TObject, bool>>与Func<TObject, bool>的区别

Func<TObject, bool>是委托(delegate)

Expression<Func<TObject, bool>>是表达式比如:

Expression编译后就会变成delegate,才能运行。

Expression<Func<int, bool>> ex = x=>x < 100;

Func<int, bool> func = ex.Compile(); 

然后你就可以调用func:

func(5) //-返回 true

func(200) //- 返回 false

而表达式是不能直接调用的。

 

1
2
3
4
5
6
7
8
9
10
11
12
案例:不正确的查询代码造成的数据库全表查询。
//错误的代码
Func<QuestionFeed,  bool > predicate =  null ;
if   (type == 1)
{
     predicate = f => f.FeedID == id && f.IsActive ==  true ;
}
else
{
     predicate = f => f.FeedID == id;
}
//_questionFeedRepository.Entities的类型为IQueryable<QuestionFeed>
_questionFeedRepository.Entities.Where(predicate);

上面代码逻辑是根据条件动态生成LINQ查询条件,将Func类型的变量作为参数传给Where方法。

 

实际上Where要求的参数类型是:Expression<Func<TSource, bool>>。

解决方法:

不要用Func<TSource, bool>,用Expression<Func<TSource, bool>>。

1
2
3
4
5
6
7
8
9
10
11
//正确的代码
Expression<Func<QuestionFeed,  bool >> predicate= null ;
if   (type == 1)
{
     predicate = f => f.FeedID == id && f.IsActive ==  true ;
}
else
{
     predicate = f => f.FeedID == id;
}
_questionFeedRepository.Entities.Where(predicate);
 

P.S.

LINQ(读音link)代表语言集成查询(Language Integrated Query),是.NEt框架的扩展,它允许我们用SQL查询数据库的方式来查询数据的集合,使用它,你可以从数据库、程序对象的集合以及XML文档中查询数据。

 

 

 

 

 Expression<Func<Mid_TriaBalance, bool>> exp = r => r.ID == 1;//使用lambda表达式查询ID为1的数据库数据
    var triaBalance = customerDbContext.Mid_TriaBalance.Where(exp).First();

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章