简体   繁体   中英

Autofac DbContext has been disposed

I've read this post DbContext has been disposed and autofac but I'm still getting the same error:

The operation cannot be completed because the DbContext has been disposed.

public class EFRepository : IRepository
{
    private EFDbContext context;

    public EFRepository(EFDbContext ctx)
    {
        context = ctx;
    }

    public TEntity FirstOrDefault<TEntity>(Expression<Func<TEntity, bool>> predicate, params Expression<Func<TEntity, object>>[] includes)
        where TEntity : class, IContextEntity
    {
        IQueryable<TEntity> query = includes.Aggregate<Expression<Func<TEntity, object>>, IQueryable<TEntity>>
                     (context.Set<TEntity>(), (current, expression) => current.Include(expression));            

        return query.FirstOrDefault(predicate);
    }
}

And in the Global.asax

ContainerBuilder builder = new ContainerBuilder();
builder.RegisterControllers(typeof(MvcApplication).Assembly);

builder.Register<IRepository>(c => new EFRepository(new EFDbContext()));

ILifetimeScope container = builder.Build();
DependencyResolver.SetResolver(new AutofacDependencyResolver(container));

Controller injection:

public class AccountController : Controller
{
    private readonly IRepository repository;
    private readonly IMembershipService membershipService;        

    public AccountController(IRepository repo, IMembershipService mmbrSvc)
    {
        repository = repo;
        membershipService = mmbrSvc;
    }
    [HttpPost]        
    public ActionResult Login(LoginViewModel viewModel)
    {
        if (!ModelState.IsValid)             
            return new HttpStatusCodeResult(HttpStatusCode.BadRequest);            

        string returnUrl = (string)TempData["ReturnUrl"];
        LoginDto accountDto = viewModel.GetLoginStatus(repository, membershipService, returnUrl);
        string accountDtoJson = JsonHelper.Serialize(accountDto);

        return Content(accountDtoJson, "application/json");
    }
}

Then in LoginViewModel:

public LoginDto GetLoginStatus(IRepository repo, IMembershipService mmbrSvc, string returnUrl)
    {
        repository = repo;
        membershipService = mmbrSvc;

        User user = repository.FirstOrDefault<User>(x => x.Username == Username, x => x.Membership);
    ............
    ............
    }

You need to register the DbContext itself with AutoFac and give it the appropriate lifetime. InstancePerDependency is usually fine for repositories.

builder.RegisterType<EFDbContext>().AsSelf().InstancePerDependency();

Then, you don't need to give the repository registration an object, just register the type (remembering to specify the lifetime as well):

builder.Register<EFRepository>().As<IRepository>().InstancePerLifetimeScope();

Use builder.RegisterType<EFDbContext>().AsSelf().SingleInstance();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM