3

我在 MVC3 应用程序中看到了许多使用实体框架的示例,它们是非常简单的演示,其中只有一个带有 edmx 的 mvc3 Web 项目。

因此,他们可以通过“使用”语句使用打开和关闭连接的最佳实践:

using(var context = new SchoolEntities())
{
    // do some query and return View with result.
}

而且,它可以在“使用”语句中正确使用延迟加载(导航属性),因为上下文尚未释放:

foreach(var item in student.Course)
{
    // do something with the navigation property Course
}

在成为 n 层应用程序之前,一切似乎都很完美。

我创建了 DAL、BLL 和 MVC3 UI。

DAL里面有 edmx,还有像 SchoolDA.cs 这样的操作符类

public class StudentDA()
{
    public Student FindStudent(int studentId)
    {
        using(var context = new SchoolContext())
        {
            // do query, return a student object.
        }
    }
}

然后,在 BLL 中,如果我使用:

var student = studentDa.FindStudent(103);

然后调用它的导航属性

student.Course

我会得到一个错误(当然):

ObjectContext 实例已被释放,不能再用于需要连接的操作。

所以,我必须像这样更改 StudentDA.cs:

public class StudentDA() : IDisposable
{
    private SchoolEntites context;

    public StudentDA()
    {
        context = new SchoolEntities();
    }

    public void Dispose()
    {
        context.Dispose();
    }

    public Student FindStudent(int studentId)
    {
        // do query, return a student object.
    }
}

然后,BLL 会变成这样:

public Student FindStudent(int id)
{
    using(var studentDa = new StudentDA())
    {
        // this can access navigation properties without error, and close the connection correctly.
        return studentDa.FindStudent(id);
    }
}

在遇到 Update() 方法之前,一切似乎都再次完美。

现在,如果我想更新从 BLL.FindStudent() 获取的学生对象,context.SaveChanges() 将返回 0,因为上下文已经在 BLL.FindStudent() 中处理,并且不会更新任何内容数据库。

var optStudent = new StudentBO();
var student = optStudent.FindStudent(103);
student.Name = "NewValue";
optStudent.Update(student);

有人知道如何在 3 轮胎应用程序中使用 EntityFramework 吗?或者我怎样才能正确管理上下文。我会经常在 web 层使用导航属性,但我不能总是保持连接打开来消耗服务器内存。

4

2 回答 2

7

有多种方法可以处理 EF 上下文的生命周期。在 Web 应用程序中,通常上下文对于 HttpRequest 是唯一的。例如,如果您想在 Web 应用程序中手动处理此问题并拥有每个 Thread/HttpRequest EF 上下文,则可以使用以下方法执行此操作(从http://www.west-wind.com/weblog/posts复制的代码/2008/Feb/05/Linq-to-SQL-DataContext-Lifetime-Management):

internal static class DbContextManager
{
    public static DbContext Current
    {
        get
        {
            var key = "MyDb_" + HttpContext.Current.GetHashCode().ToString("x")
                      + Thread.CurrentContext.ContextID.ToString();
            var context = HttpContext.Current.Items[key] as MyDbContext;

            if (context == null)
            {
                context = new MyDbContext();
                HttpContext.Current.Items[key] = context;
            }
            return context;
        }
    }
}  

然后您可以轻松使用:

var ctx = DbContextManager.Current

但我建议您将生命周期管理留给AutofacCastle WindsorNinject等 IoC 框架,它们会自动处理您注册对象的创建/处置以及许多其他功能。

于 2012-08-14T07:10:00.090 回答
0

感谢您的回答卡米亚尔。我在寻找一种无需使用 IoC 框架来管理 ObjectContext 生命周期的简单策略时遇到了这个问题,这对于我的需求来说似乎有点矫枉过正。

我还在这里看到了你的另一篇文章用于在请求结束时处理上下文。

认为这可能对遇到此问题的其他人有用,因此只需在此处发布我的代码实现:

上下文管理器类 -

internal static class MyDBContextManager
    {
        //Unique context key per request and thread
        private static string Key
        {
            get
            { 
                return string.Format("MyDb_{0}{1}", arg0: HttpContext.Current.GetHashCode().ToString("x"),
                    arg1: Thread.CurrentContext.ContextID);
            }
        }

        //Get and set request context
        private static MyDBContext Context
        {
            get { return HttpContext.Current.Items[Key] as MyDBContext; }
            set { HttpContext.Current.Items[Key] = value; }
        }

        //Context per request
        public static MyDBContext Current
        {
            get
            {
                //if null, create new context 
                if (Context == null)
                {
                    Context = new MyDBContext();
                    HttpContext.Current.Items[Key] = Context;
                }
                return Context;
            }
        }

        //Dispose any created context at the end of a request - called from Global.asax
        public static void Dispose()
        {
            if (Context != null)
            {
                Context.Dispose();
            }
    }
}

Global.asax (MVC) -

    public override void Init()
    {
        base.Init();
        EndRequest +=MvcApplication_EndRequest; 
    }

    private void MvcApplication_EndRequest(object sender, EventArgs e)
    {
        MyDBContextManager.Dispose();
    }
于 2015-01-08T11:47:38.617 回答