I'll blame tiredness though this one has really got the best of me
var result = Expression.Lambda<Func<T, bool>>(expression, parameterType).Compile();
With Error: Cannot implicitly convert type 'System.Func' to 'bool'
As you've probably guessed, I need this to return to a bool rather than Func
Thanks in advance