To query the database using LINQ in Entity Framework, you typically use the ________ property of DbContext.

  • Context
  • Data
  • DbSet
  • Query
In Entity Framework, to query the database using LINQ, you typically use the DbContext class's Set property, which provides access to the entities of a specific type. The Set property allows you to perform LINQ queries against the database.
Add your answer
Loading...

Leave a comment

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