Hi,
I have a Silverlight 3 app using WCF RIA Services and Entity Framework for the data-layer.
I need to pivot some data and was wondering what the best practice is: Should the service return pivoted data, or should it just return a standard entity set and the client do the pivoting? Bearing in mind that the data needs to be editable so I need to be able to "un-pivot" the data as well.
Thanks.