An ActiveRecord class (XXXXXXXXX) was used but the framework seems not properly initialized. Did you

来源:互联网 发布:js confirm 修改为yes 编辑:程序博客网 时间:2024/05/16 15:43

问题:

An ActiveRecord class (XXXXXXXXX) was used but the framework seems not properly initialized. Did you forget about ActiveRecordStarter.Initialize() ?

解决方案:
在Global.asax.cs中加入以下代码,如:

public class Global : System.Web.HttpApplication
    {
        protected void Application_Start(object sender, EventArgs e)
        {
            // 在应用程序启动时运行的代码
            IConfigurationSource source = ActiveRecordSectionHandler.Instance;
            ActiveRecordStarter.Initialize(System.Reflection.Assembly.Load("你自己XX"), source);
        }

      protected void Session_Start(object sender, EventArgs e)
        {
       }
      protected void Application_BeginRequest(object sender, EventArgs e)
        {
            HttpContext.Current.Items.Add("ar.sessionscope", new SessionScope(FlushAction.Never));
        }
        protected void Application_EndRequest(object sender, EventArgs e)
        {
            try
            {
                SessionScope scope = HttpContext.Current.Items["ar.sessionscope"] as SessionScope;
               if (scope != null)
                {
                    scope.Dispose();
                }
            }
            catch (Exception ex)
            {
                HttpContext.Current.Trace.Warn("Error", "EndRequest: " + ex.Message, ex);
            }
        }
        protected void Application_AuthenticateRequest(object sender, EventArgs e)
        {
        }
        protected void Application_Error(object sender, EventArgs e)
        {
        }
       protected void Session_End(object sender, EventArgs e)
        {
        }
       protected void Application_End(object sender, EventArgs e)
        {
        }
        
    }

1 0