I have a wcf dataservice I am calling from Silverlight and I am expanding a collection property on an entity and I want to be able to sort the items in the expanded property by specifying it in the query.
Is there a way to do this?
here is the expand linq : - I want the Videos collection to be sorted by a property called SortOrder on the Video entity.
var expandQuery = (from s in dataService.Series.Expand("Videos")
where s.SeriesGUID == series.SeriesGUID
select s) as DataServiceQuery<Series>;
thanks Michael