To build up an expression like _ => _.Field == "VALUE" at runtime.
Given a predicate _ => _.Field and a string value "VALUE", create an expression that tests whether or not the predicate is true.
The expression is suitable for:
IQueryable<T>, IEnumerable<T>...