Hi there,
i have been reading when using Linq to entites a query is of type IQueryable before it is processed but when the query has been processed, it's no longer an IQueryable, but an ObjectQuery.
In that case, is it correct to write methods from my layer (repository layer) to return IQueryable?
Do i need to cast?
Why would i want to return an objectQuery?
Sorry coming form a LINQ to SQL background where things were always IQueryable but EF seems to have changed this
Any help really appreciated
Thanks in advance