Hello, I recently asked a question about tracing Linq-to-Entities
I think that one of the answers was not right, as they refer to using the DataContext. Is there a DataContext for LINQ-to-Entities? If so, how do I get it?
|
|
Hello, I recently asked a question about tracing Linq-to-Entities I think that one of the answers was not right, as they refer to using the DataContext. Is there a DataContext for LINQ-to-Entities? If so, how do I get it?
|
|||
|
|
|
|
LINQ to Entities uses ObjectContext, not DataContext. Here is a short description of EF:
It doesn't even work the same way as the DataContext in LINQ to SQL. While it is true that they both manage the connection and track changes, yet they differ in how they model the data structures and relationships. I would give the poster of that wrong answer some slack, though, because LINQ to SQL does make reference to "entities", and someone not familiar with EF could very well still be thinking they know what you are talking about. For example:
It can be confusing. |
||
|
|
|
|
Apparently, LinqToEntities uses an ObjectContext instead of DataContext. It is hilarious that the object team made a DataContext and the data team made an ObjectContext (and on to DataQuery vs ObjectQuery, etc.) "Naming is Hard!" |
|||
|
|
|
|
There are a lot of these arbitary syntax differences. E.g. SubmitChanges (L2S) and SaveChanges (L2E). However, that would be just the tip of the differences between the two technologies. |
||
|
|
|
|
I think you might be referring to the ADO.NET Entity Data Model (.edmx file - comparable to a .dbml file). In VS it is seen in the Add Item->ADO.NET Entity Data Model |
||
|
|