What is the result type of a projection query when using the Select method in LINQ with Entity Framework?

  • IEnumerable
  • IQueryable
  • List
  • var
The result type of a projection query using the Select method in LINQ with Entity Framework is IEnumerable. This result type enables deferred execution, allowing further composition of queries and efficient handling of large datasets without materializing all records upfront.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *