首页 > 移动平台 > 详细

表达式拼接Expression<Func<IEntityMapper, bool>> predicate

时间:2016-06-29 23:44:14      阅读:697      评论:0      收藏:0      [点我收藏+]
        /// <summary>
        /// 重写以筛选出当前上下文的实体映射信息
        /// </summary>
        protected override IEnumerable<IEntityMapper> EntityMappersFilter(IEnumerable<IEntityMapper> entityMappers)
        {
            Type contextType = typeof(TDbContext);
            Expression<Func<IEntityMapper, bool>> predicate = m => m.DbContextType == contextType;
            if (contextType == typeof(DefaultDbContext))
            {
                predicate = predicate.Or(m => m.DbContextType == null);
            }
            return entityMappers.Where(predicate.Compile());
        }

表达式拼接Expression<Func<IEntityMapper, bool>> predicate

原文:http://www.cnblogs.com/shiningrise/p/5628502.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!