Daniel Magliola
Daniel Magliola

Reputation: 32382

When does Entity Framework open and close Database Connections?

When I instance my "Entities" object in Entity Framework, and make a couple of queries using that Entities object, what happens to connections?

In either case, is it possible to change it so that it does the other thing?

Upvotes: 45

Views: 39694

Answers (2)

Kelly Robins
Kelly Robins

Reputation: 7288

Basically it opens when a request is called and closes once the results have been disposed or consumed. You can manually open/close or use the same connection using the object context...

This article has a more complete explanation - http://msdn.microsoft.com/en-us/library/bb738582.aspx (archive.org)

Here is the How To on using an entity Connection - http://msdn.microsoft.com/en-us/library/bb738461.aspx (archive.org)

Upvotes: 34

Rory
Rory

Reputation: 41807

The behaviour changed somewhat in EF6, allowing you to pass in open connections or to open the EF connection yourself later. Check out https://msdn.microsoft.com/en-us/library/dn456849(v=vs.113).aspx

Upvotes: 8

Related Questions