我有以下情况:
我在编译时有一个未知的 DbSet,我通过它的类型得到它,例如:
DbSet entities = _repository.Context.Set(myType)
我有一个给定类型的动态构建表达式,
Expression myFilter;
//构建为 的表达式myType
,在运行时构建
我如何申请myFilter
,entities
以过滤掉基于的实体myFilter
?
我有以下情况:
我在编译时有一个未知的 DbSet,我通过它的类型得到它,例如:
DbSet entities = _repository.Context.Set(myType)
我有一个给定类型的动态构建表达式,
Expression myFilter;
//构建为 的表达式myType
,在运行时构建
我如何申请myFilter
,entities
以过滤掉基于的实体myFilter
?
下面是一个可能对您有所帮助的代码:它最终创建了一个 myType 的 IQueryable,它实际上表示类似 SELECT * FROM YourMappedTable WHERE Id = 1 但当然,而不是使用我为演示目的构建的表达式,您可以使用您的表达。
class Program
{
static void Main(string[] args)
{
using (var x = new DB01Entities ())
{
Type myType = typeof(Angajati);
var setMethod = typeof(DB01Entities).GetMethods(System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.Public).Where (a => a.Name == "Set" && a.IsGenericMethod).First ().GetGenericMethodDefinition ();
var mySet = setMethod.MakeGenericMethod(myType);
var realSet = mySet.Invoke(x, null);
var param1 = Expression.Parameter(myType, "param1");
var propertyExpresion = Expression.Property(param1, "Id");
var idExpresssion = Expression.Constant(1);
var body = Expression.Equal(propertyExpresion, idExpresssion);
var lambda = Expression.Lambda(body, param1);
var genericTypeCaster = typeof(Program).GetMethod("Caster", System.Reflection.BindingFlags.Static | System.Reflection.BindingFlags.NonPublic).GetGenericMethodDefinition();
var effectiveMethod = genericTypeCaster.MakeGenericMethod(myType);
var filteredQueryable = effectiveMethod.Invoke(null, new Object[] {realSet, lambda });
}
}
private static IQueryable<T> Caster <T> (DbSet<T> theSet, Expression whereCondition) where T : class
{
return theSet.Where(whereCondition as Expression<Func<T, bool>>);
}
}
所以上面的“lambda”变量等同于你的“myFilter”。它必须在运行时
Expression<Func<YourType, bool>>.
mySet 是您的“实体”DbSet。编码愉快!