May 2010
Intermediate to advanced
1272 pages
61h 18m
English
LINQ query results are returned as IEnumerable(Of T) (or IQueryable(Of T) as you see in next chapters), but you often need to convert this type into a most appropriate one. For example, query results cannot be edited unless you convert them into a typed collection. To accomplish this LINQ offers some extension methods whose job is converting query results into other .NET types such as arrays or collections. For example let’s consider the Products collection of the previous section’s examples and first perform a query expression that retrieves all products that are not discontinued:
![]()
The result of this query is IEnumerable(Of ...
Read now
Unlock full access