Let's say I have defined the following variables:...IQueryable<MyClass> myQueryable;
Dictionary<string, Expression<Func<MyClass, bool>>> extraFields;
// the dictionary is keyed by a field name
...Now, I want to tack on some dynamic fields to the IQueryabl...