Difference between Expression<Func<>> and Func<>
- by Sir Psycho
As an example, why do most LINQ operators accept Expression<Func<TSource>> and it's equivalent Func<TSource>
What's the benefit/reason for using the generic Expression class instead of straight up lamda syntax?