zoukankan      html  css  js  c++  java
  • 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

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

    ===========================

    案例:不正确的查询代码造成的数据库全表查询。

     
    
    
    //错误的代码
    
    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>>。

    //正确的代码
    
    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);
    
  • 相关阅读:
    Pytorch中的torch.nn类
    form表单转化json对象
    js 算法
    vue 中ref 的使用注意事项
    url 地址含参数较多如何拼接
    关于jsonp知识的理解
    ztree 使用心得
    Git查看与修改用户名、邮箱(转载)
    vue2.0 keep-alive 最佳实战(转载)
    使用keep-alive 实现 页面回退不刷新内容
  • 原文地址:https://www.cnblogs.com/wangbaohui/p/6900356.html
Copyright © 2011-2022 走看看