Which method in LINQ is commonly used for transforming the results of a query into a different shape?

  • Join
  • Select
  • SelectMany
  • Where
The Select method in LINQ is commonly used for transforming the results of a query into a different shape. It allows developers to project the elements of a sequence into a new form, such as selecting specific properties or performing calculations.
Add your answer
Loading...

Leave a comment

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