实体框架/ Linq - 获取动态指定属性的不同值

时间:2013-08-19 16:34:35

标签: c# linq entity-framework-5

我需要获取实体集合的特定属性的不同值列表。

所以,假设表A有字段x,y,z,1,2,3,其中x是PK(因此不在表格内)。

我需要获得y,z,1,2或3的所有唯一值,而不必在我的方法中知道我正在获得哪个字段。所以该方法的模式是:

public List<ObjectName> GetUniqueFieldValues(string fieldname)

“ObjectName”对象是一个具有两个属性的对象,上述方法将为每个结果填充至少一个属性。

另一个问题中的某个人使用ParameterExpression和Expression类有类似的答案,但没有提供足够的信息来帮助我完成我的具体任务。

我也尝试过反射,但当然Linq在Select表达式中并不那么喜欢。

我会使用if并将其称为好,但实际的表/对象中确实存在大量的字段/属性,因此这是不切实际的。如果基表发生变化,这也可以节省一些重构。

我正在尝试做的SQL版本:

SELECT Distinct [usersuppliedfieldname] from TableName where [someotherconditionsexist]

我已经拥有的伪代码:

public List<ReturnObject> GetUniqueFieldValues(int FkId, ConditionObject searchmeta)
{
    using(DbEntities db = new DbEntities())
    {
        // just getting the basic set of results, notice this is "Select *"
        var results = from f in db.Table
                      where f.FkId == FkId && [some static conditions]
                      select f;

        // filtering the initial results by some criteria in the "searchmeta" object
        results = ApplyMoreConditions(results, searchmeta);

        //  GOAL - Select and return only distinct field(s) specified in searchmeta.FieldName)

    }
}

1 个答案:

答案 0 :(得分:3)

您可以尝试这样的事情(类似于建议重复的帖子)

public static class DynamicQuerier
{
    private delegate IQueryable<TResult> QueryableMonad<TInput, TResult>(IQueryable<TInput> input, Expression<Func<TInput, TResult>> mapper);

    public static IQueryable<TResult> Select<TInput, TResult>(this IQueryable<TInput> input, string propertyName)
    {
        var property = typeof (TInput).GetProperty(propertyName);
        return CreateSelector<TInput, TResult>(input, property, Queryable.Select);
    }

    private static IQueryable<TResult> CreateSelector<TInput, TResult>(IQueryable<TInput> input, MemberInfo property, QueryableMonad<TInput, TResult> method)
    {
        var source = Expression.Parameter(typeof(TInput), "x");
        Expression propertyAccessor = Expression.MakeMemberAccess(source, property);
        var expression = Expression.Lambda<Func<TInput, TResult>>(propertyAccessor, source);
        return method(input, expression);
    }
}

对于我的测试,我创建了一组名为Tests的虚拟实体,下面是从Property2获取不同值的查询

var values = context.Tests.Select<Test, int>("Property2").Distinct();