void ITest<TSource, TDestination>.TestMethod<TValue>(Expression<Func<TDestination, TValue>> destination, Func<TValue> value)
        {
            // i want to create Func<TValue> to Expression<Func<TSource, TValue>>
        }
I am having method which will be takes argument Func.
I want to convert Func to Expression>
 
    