Autofac DbContext has been disposed

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-20 06:29:06

问题


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);
    ............
    ............
    }

回答1:


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();


来源:https://stackoverflow.com/questions/35422549/autofac-dbcontext-has-been-disposed

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!