vote up 2 vote down star
4

I'm using ADO.NET EF in an MVC application. I'm considering putting the ObjectContext inside HttpContext.Current so that all logic in the same request can access to it without having to open/destroy each time. However, I'm really sure if it's a good way to manage ObjectContext instances. I have 2 questions regarding this need:

  1. As HttpContext.Current property is backed by a thread-local field and ASP.NET uses threads from pool to handle requests, is it possible that an ObjectContext instance put into HttpContext.Current by a request will be visible to a subsequent request running on the same thread from the pool?

  2. How do you think ObjectContext should be managed in ASP.NET MVC to both avoid lots of opening/disposing and prevent race conditions?

flag

78% accept rate

5 Answers

vote up 1 vote down check

I agree with Todd - use DI/IoC cotnainer (Unity, Windsor) with per-thread (or custom per-request) lifetime.

Ad 2, as I remember, in Linq to SQL, DataContext object was considered a lightweight object so it should not be a problem to create it often. Hopefully, it is similar for EF.

link|flag
vote up 1 vote down

Using a single ObjectContext per request is a good idea.

If you are handling it yourself you need to put the context in the HttpContext.Items collection. On EndRequest you need to ensure that the context is disposed.

As mentioned, some IoC frameworks support this OTB - usually called PerRequest scope/lifetime.

link|flag
vote up 0 vote down

Thanks for the IoC suggestion. I used Unity and implemented a per-request lifetime manager to store/retrieved objects via HttpContext.Current. Seems to work fine.

link|flag
vote up 1 vote down

Use the Repository pattern. Override Controller.Dispose to dispose the Repository, which, in turn, disposes the DataContext.

link|flag
vote up 2 vote down

I would use an IoC container like StructureMap, Autofac, Windosor, etc.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.