Ok, I am sure this is simple, but I am having a senior moment.
I have a simple BinaryExpression (greaterthan) the left side is a ParameterExpression and the right side is a ConstantExpression I want to compile this expression to a func that I can call and pass a parameter to...
var func = ...something with my exp....
bool result = func(myValue);
Thanks to Hasan, I modified his answer to my needs...
var func = Expression.Lambda<Func<int,bool>>(myExpr, (ParameterExpression)myExpr.left).Compile();