views:

56

answers:

2

If I write a LINQ to Entities query does that get translated to a native query that the provider understands (i.e. SqlClient)?

OR

Does it get translated to Entity SQL that the Entity Framework then translates to a native query and passes to the provider?

If it gets translated to Entity SQL where I would I be able to see the Entity SQL that was generated?

If my question reveals that I'm totally screwed up in my thinking please set me straight!

+3  A: 
Craig Stuntz
Ahh, thanks Craig! Now that you pointed out the CCT it makes perfect sense.
Nevada
+1  A: 
Nevada