这是一个简单的类
public class Parent
{
public Child Child { get; set; }
}
这是我正在尝试实施的方法
Expression<Func<Parent, long>> GetChildIDExpr(Expression<Func<Child, long>> objectIdExpr)
{
//So I need to return an expression that can accept a Parent
//and apply the given expression to its Child property.
}
听起来很简单,但我就是做不出来!
我怎样才能实现这个方法?
编辑:
我正在使用 LINQ to Entities,所以调用Expression.Invoke
不起作用。