给定原始值age
我知道如何创建这样的表达式:
//assuming: age is an int or some other primitive type
employee => employee.Age == age
通过这样做:
var entityType = typeof(Employee);
var propertyName = "Age";
int age = 30;
var parameter = Expression.Parameter(entityType, "entity");
var lambda = Expression.Lambda(
Expression.Equal(
Expression.Property(parameter, propertyName),
Expression.Constant(age)
)
, parameter);
除了在有问题的属性和常量不是原始类型的情况下,它才能正常工作。
如果比较是在对象之间,我将如何构造一个类似的表达式?
使用EF我可以写:
Location location = GetCurrentLocation();
employees = DataContext.Employees.Where(e => e.Location == location);
这也有效,但如果我尝试创建相同的表达式:
var entityType = typeof(Employee);
var propertyName = "Location";
var location = GetCurrentLocation();
var parameter = Expression.Parameter(entityType, "entity");
var lambda = Expression.Lambda(
Expression.Equal(
Expression.Property(parameter, propertyName),
Expression.Constant(location)
)
, parameter);
我收到错误消息:
Unable to create a constant value of type 'Location'. Only primitive types or enumeration types are supported in this context.
我怀疑Expression.Constant()
只需要原始类型,所以我需要使用不同的表达式工厂方法。 (maype Expression.Object
? - 我知道不存在)
有没有办法创建一个比较对象的表达式?为什么EF能够在编译LINQ语句时正确解释它,但是当它是表达式时却不能解释它?
答案 0 :(得分:5)
除了之前的答案中提到的内容。更具体的解决方案将如此:
public static Expression CreateExpression<T>(string propertyName, object valueToCompare)
{
// get the type of entity
var entityType = typeof(T);
// get the type of the value object
var valueType = valueToCompare.GetType();
var entityProperty = entityType.GetProperty(propertyName);
var propertyType = entityProperty.PropertyType;
// Expression: "entity"
var parameter = Expression.Parameter(entityType, "entity");
// check if the property type is a value type
// only value types work
if (propertyType.IsValueType || propertyType.Equals(typeof(string)))
{
// Expression: entity.Property == value
return Expression.Equal(
Expression.Property(parameter, entityProperty),
Expression.Constant(valueToCompare)
);
}
// if not, then use the key
else
{
// get the key property
var keyProperty = propertyType.GetProperties().FirstOrDefault(p => p.GetCustomAttributes(typeof(KeyAttribute), false).Length > 0);
// Expression: entity.Property.Key == value.Key
return Expression.Equal(
Expression.Property(
Expression.Property(parameter, entityProperty),
keyProperty
),
Expression.Constant(
keyProperty.GetValue(valueToCompare),
keyProperty.PropertyType
)
);
}
}
重要要点:
propertyType
和valueType
兼容(它们属于同一类型或可转换)KeyAttribute
)希望有所帮助。
答案 1 :(得分:3)
您不能这样做,因为EF不知道如何将Location
上的相等比较转换为SQL表达式。
但是,如果您知道要比较的Location
的哪些属性,则可以使用匿名类型执行此操作:
var location = GetCurrentLocation();
var locationObj = new { location.LocationName, location.LocationDescription };
employees = DataContext.Employees.Where(e => new { e.Location.LocationName, e.Location.Description } == locationObj);
当然这相当于:
var location = GetCurrentLocation();
employees = DataContext.Employees.Where(e => e.Location.LocationName == location.Name &&
e.Location.Description == location.Description);
答案 2 :(得分:2)
将代码提供给运行。我想测试你的假设e =&gt; e.Location == location正在编译成可以用Expression.Equal,Expression.Property和Expression.Constant构建的东西。
class Program {
static void Main(string[] args) {
var location = new Location();
Expression<Func<Employee, bool>> expression = e => e.Location == location;
var untypedBody = expression.Body;
//The untyped body is a BinaryExpression
Debug.Assert(
typeof(BinaryExpression).IsAssignableFrom(untypedBody.GetType()),
"Not Expression.Equal");
var body = (BinaryExpression)untypedBody;
var untypedLeft = body.Left;
var untypedRight = body.Right;
//The untyped left expression is a MemberExpression
Debug.Assert(
typeof(MemberExpression).IsAssignableFrom(untypedLeft.GetType()),
"Not Expression.Property");
////The untyped right expression is a ConstantExpression
//Debug.Assert(
// typeof(ConstantExpression).IsAssignableFrom(untypedRight.GetType()),
// "Not Expression.Constant");
//The untyped right expression is a MemberExpression?
Debug.Assert(
typeof(MemberExpression).IsAssignableFrom(untypedRight.GetType())));
}
}
public class Employee
{
public Location Location { get; set; }
}
public class Location { }
似乎它不是,因为正确的表达式不是常数。要查看此内容,请取消注释已注释掉的代码。
我不明白为什么正确的表达式是MemberExpression。或许知道linq表达式编译器的人可以为此提供更多的亮点,然后我可以。
编辑:这可能与lambdas中的闭包有关 - 在幕后创建一个包含闭合变量的类。该位置可能是该类的成员。我不确定这一点,但这是我怀疑的。
This post可能会进一步阐明这种情况。