我正在使用EF 6.1,我想使用以下SQL
查询我的实体SELECT field, count(*)
FROM entity
GROUP BY field
HAVING COUNT(*) > 1
此处field
和entity
都是可变的。如果两者在编译时都已知,我可以使用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))
答案 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.Name
是TEntity
中的属性名称
Grouper(context.Set<TEntity>(), f.Name)
.Where(field => field.Count() > 1)
.Select(s => new { Key = s.Key, Count = s.ToList().Count })