Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I just want to confirm... LINQ-to-SQL queries never execute (hits the database) until it is enumerated, right?

Does anyone know if this is the same for LINQ-to-Entities?

Thanks!

share|improve this question

3 Answers

up vote 3 down vote accepted

Yes, this is called Deferred Execution.

share|improve this answer

Watch this screencast: When Do LINQ to SQL Queries Execute?

share|improve this answer

Yes, they behave the same.

The query will be executed upon the first usage of the variable.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.