LINQ to SQL provides a convenient way to map database ___________ to .NET objects.

  • Tables
  • Rows
  • Columns
  • Views
The correct option is 'Tables'. LINQ to SQL enables developers to map database tables directly to .NET objects, making it easier to work with relational data in an object-oriented manner. Each table in the database corresponds to a class in the LINQ to SQL data context, and each row in the table is represented by an instance of that class. This mapping simplifies data access and manipulation tasks.
Add your answer
Loading...

Leave a comment

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