I'm working on an app using a WCF server (using the new beta Mindscape LightSpeed ORM) and consuming the service at an ASP.NET MVC2 client. My entities show up at the client as array of T
, or IEnumerable<T>
. I want to do cool things with the data after it has arrived, but the LINQ syntax required IQueryable<T>
.
I know there is a way to convert from IEnumerable<T>
to IQueryable<T>
, but I have had no luck so far searching for it. Can anybody help?
Thanks, Dave