-In the previous code example, the query expression is in curly braces. The meaning of the code in the expression is, return every customer in the Customers table in the database in the query results. Query expressions return a type that implements [IQueryable<T>](@System.Linq.IQueryable%601) and [IEnumerable<T>](@System.Collections.Generic.IEnumerable%601), and so they can be iterated using the [Seq module](https://msdn.microsoft.com/library/54e8f059-ca52-4632-9ae9-49685ee9b684) as the example shows.
0 commit comments