Support handlers for MethodCallExpressions that call implementations of interface methods, for example IEquatable<T>.Equals.
Support for:
Support for queries of the following form: from c in Cooks where new { c.FirstName, c.LastName } == new { FirstName = "John", LastName = "Doe" } select c.
This is also useful for groupings where the grouping key is a compound key.