Scenario: You are developing an application that needs to query a list of customer objects stored in memory. Which LINQ technology would you choose for this task?

  • LINQ to Entities
  • LINQ to Objects
  • LINQ to SQL
  • LINQ to XML
LINQ to Objects is the appropriate choice for querying in-memory collections, such as lists of customer objects. It provides powerful querying capabilities against in-memory data structures.
Add your answer
Loading...

Leave a comment

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