I am trying create a WCF Data Services ServiceOperation that does grouping on the server side and then sends the data down to the client.
When I try to call it (or even connect to the service) I get an error. It says that it can't construct an interface.
The only interface I am using is IGrouping.
What is a/the actual class for this interface?
Update:
I checked the type while debugging a sample app and it told me it was:
System.Linq.Lookup<TKey,TElement>.Grouping
But what assembly is it in?