Appropriate Repository LifeCycle Scope w/ Ninject in MVC

后端 未结 2 1428
天涯浪人
天涯浪人 2021-02-10 01:51

What is the appropriate LifeCycle Scope for a repository and the EF context when using Entity Framework 4 with Ninject in an MVC 3 application?

I\'ve been using the defa

相关标签:
2条回答
  • This depends on a couple of factors.

    1. Do you care about transactions at all? It not that transient scope is ok for you.

    2. Do you care about transactions but think one transaction per web request is ok for you? Then use web scoped.

    3. Are you ok with objects being "cached" in EF's context and don't want a full database refresh if you request the same object twice? Web scope has this side effect.

    0 讨论(0)
  • 2021-02-10 02:35

    Your repository can be transient scope, however, I would bind the context in request scope. This way all of your repository instances will share the same context. This way you can reap the caching and transactional benefits of an ORM.

    The way it works currently in your code is that a new context is created any time you request one. So if your controller first uses a repository and then calls another module that in turn uses a repository. Each of those repositories will have a different instance of the context. So in effect you are now using your ORM simply as a connection manager and SQL generator.

    This can also have unintended consequences. Imagine a code like the following:

    public ActionResult MyAction(int id)
    {
        var entity = _repository.Get<Entity>(id);
        entity.Prop = "Processing";
        _module.DoStuff(id);
    }
    

    If the DoStuff method, eventually calls _repository.Get<Entity>(id); again, you will have 2 different copies of your entity that are out of sync.

    0 讨论(0)
提交回复
热议问题