What is AsEnumerable in LINQ C#?
What is AsEnumerable in LINQ C#? In LINQ, AsEnumerable() method is used to convert/cast specific types of given list items to its IEnumerable equivalent type. Does AsEnumerable execute the query? 5 Answers. Calling AsEnumerable( ) does not execute the query, enumerating it does. IQueryable is the interface that allows LINQ to SQL to perform its […]