我需要获取实体集合的特定属性的不同值列表.
所以,假设表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)
}
}
最佳答案 您可以尝试这样的事情(类似于建议重复的帖子)
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);
}
}
对于我的测试,我创建了一组称为测试的虚拟实体,下面是从Property2获取不同值的查询
var values = context.Tests.Select<Test, int>("Property2").Distinct();