DbContext已经处理完毕

时间:2013-09-05 11:48:58

标签: c# asp.net asp.net-mvc entity-framework dbcontext

我使用ASP.NET MVC 4和SQL Server 2008开发了一个Web应用程序,我创建了ContextManager类,在所有页面中只有一个数据库上下文。

public static class ContextManager
{
    public static HotelContext Current
    {
        get
        {
            var key = "Hotel_" + HttpContext.Current.GetHashCode().ToString("x")
                      + Thread.CurrentContext.ContextID.ToString();
            var context = HttpContext.Current.Items[key] as HotelContext;
            if (context == null)
            {
                context = new HotelContext();
                HttpContext.Current.Items[key] = context;
            }
            return context;
        }
    }
}

它在大多数页面中都能正常工作,但是在注册页面出现了问题,我的上下文因以下错误而被废弃:

  

由于已经处理了DbContext,因此无法完成操作。

public ActionResult Register ( RegisterModel model )
{
    if ( ModelState.IsValid )
    {
        // Attempt to register the user
        try
        {
            WebSecurity.CreateUserAndAccount( model.UserName, model.Password,
                                              new
                                               {
                                                      Email = model.Email,
                                                      IsActive = true,
                                                      Contact_Id = Contact.Unknown.Id
                                               } );

            //Add Contact for this User.
            var contact = new Contact { Firstname = model.FirstName, LastName = model.Lastname };
            _db.Contacts.Add( contact );
            var user = _db.Users.First( u => u.Username == model.UserName );
            user.Contact = contact;
            _db.SaveChanges();
            WebSecurity.Login( model.UserName, model.Password );

在第_db.Contacts.Add( contact );行我得到了例外。

但不通过改变

使用ContextManager
HotelContext _db = ContextManager.Current;

成:

HotelContext _db = new HotelContext();
问题解决了。但我需要使用自己的ContextManager。有什么问题?

5 个答案:

答案 0 :(得分:8)

您的上下文已被放置在其他位置(不在您显示的代码中),所以基本上当您从Register操作访问它时,它会抛出异常。

实际上,您不应使用静态单例来访问您的上下文。 为每个请求实例化一个新的DbContext实例。见c# working with Entity Framework in a multi threaded server

答案 1 :(得分:4)

就我而言,我的GetAll方法没有在lambda表达式中的where子句之后调用ToList()方法。使用ToList()后,问题解决了。

Where(x => x.IsActive).ToList();

答案 2 :(得分:2)

您可能在注册视图中“懒惰加载”User的导航属性。在将Include发送到视图之前,请确保使用DbSet方法将其包含在内:

_db.Users.Include(u => u.PropertyToInclude);

此外,与静态属性共享DbContext可能会产生意外的副作用。

答案 3 :(得分:0)

我曾经遇到过同样的问题。我按照上面的说法解决了这个问题。实例化上下文的新实例。

尝试使用:

            using (HotelContextProductStoreDB = new ProductStoreEntities())
            {
                //your code
            }

这样每次使用代码时都会创建一个新实例,并且不会处理您的上下文。

答案 4 :(得分:0)

为什么要覆盖Dispose(布尔)?

public partial class HotelContext : DbContext
{
    public bool IsDisposed { get; set; }
    protected override void Dispose(bool disposing)
    {
        IsDisposed = true;
        base.Dispose(disposing);
    }
}

然后,检查IsDisposed

public static class ContextManager
{
    public static HotelContext Current
    {
        get
        {
            var key = "Hotel_" + HttpContext.Current.GetHashCode().ToString("x")
                      + Thread.CurrentContext.ContextID.ToString();
            var context = HttpContext.Current.Items[key] as HotelContext;
            if (context == null || context.IsDisposed)
            {
                context = new HotelContext();
                HttpContext.Current.Items[key] = context;
            }
            return context;
        }
    }
}

也许可以选择。