Scenario: Your project involves interacting with a SQL Server database. Which LINQ technology is the most appropriate choice for querying and manipulating data in the database?

  • LINQ to Entities
  • LINQ to Objects
  • LINQ to SQL
  • LINQ to XML
LINQ to SQL is specifically designed for querying and manipulating data in SQL Server databases. It allows developers to write LINQ queries directly against the database entities, providing a strongly-typed approach to database access and manipulation.
Add your answer
Loading...

Leave a comment

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