Friday, December 25, 2020

Which of the following objects represents a LINQ to SQL O/R map?

 Options

- DataSet
- XElement
- ObjectContext
- DataContext


CORRECT ANSWER : DataContext

No comments:

Post a Comment

Get max value for identity column without a table scan

  You can use   IDENT_CURRENT   to look up the last identity value to be inserted, e.g. IDENT_CURRENT( 'MyTable' ) However, be caut...