Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In a web application it would be ok if i declare the context of a entity framework model as static? it would be ok? its not recommended? why? Thanks!

share|improve this question
damn I'm glad you asked this - I stumbled across it by accident – Calanus Jul 31 '09 at 11:58

3 Answers

Almost definitely not.

ObjectContexts get bigger and bigger as more Objects are queried / saved.

Also sharing an ObjectContext between threads, as you would be doing, is not recommended, because of the locking issues and undeterministic side-effects you would have to deal with.

I wrote a tip on this topic a while back.

Tip 18 - How to decide on a lifetime for your ObjectContext

share|improve this answer
I was just going to link that post myself – aleemb May 20 '09 at 18:35

This answer sort of answers your question, so does this one. I certainly wouldn't consider having it as static!

Rick Strahl has an in depth article on the lifecycle management.

share|improve this answer
the Rick Strahl link is good. – vidalsasoon May 20 '09 at 17:17

I had done this the first time I implemented the entity framework. The problem was that the whole application was getting "completed" events so I had to do a lot of code figuring out where the call came from.

I decided to refactor so each page would have an instance of the context. I like it much better now.

/my experience

share|improve this answer

Your Answer

 
discard

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