具有count()>的表达式树1

时间:2016-07-15 11:55:55

标签: c# entity-framework linq

我正在使用EF 6.1,我想使用以下SQL

查询我的实体
SELECT field, count(*) 
FROM entity
GROUP BY field
HAVING COUNT(*) > 1

此处fieldentity都是可变的。如果两者在编译时都已知,我可以使用Context.Set<Entity>().GroupBy(e => e.Field).Where(f => f.Count() > 1).Select(f => f.Key)

修改 忘记提到field总是字符串类型。

我认为可以使用表达式树,但我对此并不熟悉,学习曲线有点陡峭。

public Func<TSource, what's the return type?> CountMultiple<TSource>(string field)
        {
            var parameter = Expression.Parameter(typeof(TSource), "p");
            var property = Expression.Property(parameter, field);
.
Some more Expression magic goes here                
.

            return Expression.Lambda<Func<TSource, the return type>>(?, ?).Compile();
        }

有人能指出我正确的方向吗?

修改

澄清;我正在寻找类似这样的东西(下面将检查类型为field的实体中的TSource为空)

public Func<TSource, bool> IsNull<TSource>(string field)
        {
            var parameter = Expression.Parameter(typeof(TSource), "p");
            var property = Expression.Property(parameter, field);
            return Expression.Lambda<Func<TSource, bool>>(
                Expression.Equal(property, Expression.Constant(null, property.Type)), new[] { parameter }).Compile();
        }

然后我可以按如下方式使用它

context.Set<TEntity>()
                    .Where(e => !e.AMT_ValidationStatus.Equals(ValidationStatus.FAILED.ToString()))
                    .Where(IsNull<TEntity>(f.Name))

1 个答案:

答案 0 :(得分:0)

好的,想通了

public static IQueryable<IGrouping<string, TSource>> Grouper<TSource>(IQueryable<TSource> source, string field)
        {
            var parameter = Expression.Parameter(typeof(TSource), "x");
            var property = Expression.Property(parameter, field);
            var grouper = Expression.Lambda<Func<TSource, string>>(property, parameter);

            return source.GroupBy(grouper);
        }

哪个可以用作f.NameTEntity中的属性名称

Grouper(context.Set<TEntity>(), f.Name)
                                .Where(field => field.Count() > 1)
                                .Select(s => new { Key = s.Key, Count = s.ToList().Count })