In a Silverlight application I have a datasource, that is displayed in a grid with a pager. There are a couple of controls that change parameters of the query and/or filtering. The pager is used (obviously) because the number of returned items can be quite large.
For a certain action I want only the Ids (Guids) of all the items in the datasource. How can I achieve this? I'd like to do this without having to transfer all the data objects.
So basically something like
dds.Select(o => o.Id).ToList()