流利的NHibernate对象列表异常

时间:2014-01-30 00:43:55

标签: c# nhibernate fluent-nhibernate

我使用Fluent NHibernate进行DAL映射查询(存储在db中作为字符串)及其参数(存储在单独的表中)。

当我尝试在服务层中使用这个参数列表时,我遇到了问题。

List<QueryParameter> lqp = (List<QueryParameter>)qry.parameters;

抛出

  

无法转换类型为Hibernate.Collection.Generic.PersistentGenericBag 1[nha.cs.utility.mole.QueryParameter]' to type 'System.Collections.Generic.List 1 [nha.cs.utility.mole.QueryParameter]'的对象。


List<QueryParameter> lqp = qry.parameters.ToList<QueryParameter>();

抛出

  

初始化[nha.cs.utility.mole.Query#24] - 无法初始化角色集合:nha.cs.utility.mole.Query.parameters,没有关闭会话或会话


List<QueryParameter> lqp = new List<QueryParameter>(qry.parameters);

抛出

  

测试方法MoleSVSTest.MoleSVCTester.MoleSVCTestMethod抛出异常:       NHibernate.LazyInitializationException:
  初始化[nha.cs.utility.mole.Query#24] - 无法初始化角色集合:nha.cs.utility.mole.Query.parameters,没有关闭会话或会话


IList<QueryParameter> lqp = (IList<QueryParameter>)qry.parameters;

抛出

  

测试方法MoleSVSTest.MoleSVCTester.MoleSVCTestMethod抛出异常:   NHibernate.LazyInitializationException:初始化[nha.cs.utility.mole.Query#24] - 无法初始化角色集合:nha.cs.utility.mole.Query.parameters,没有关闭会话或会话

public class Query
{
    public virtual int id { get; protected set; }
    public virtual string name { get; set; }
    public virtual string query { get; set; }
    public virtual IList<QueryParameter> parameters { get; set; }
    public virtual IList<Application> applicationsUsedIn { get; set; }

    public Query()
    {
        this.parameters = new List<QueryParameter>();
        this.applicationsUsedIn = new List<Application>();
    }

    public virtual void AddParameter(QueryParameter qp)
    {
        qp.query = this;
        this.parameters.Add(qp);
    }
}


public class QueryMap : ClassMap<Query>
{
    public QueryMap()
    {
        Table("dbo.Queries");
        Id(x => x.id);
        Map(x => x.name);
        Map(x => x.query);
        HasMany(x => x.parameters)
            .Cascade.All()
            .KeyColumn("qryid")
            .LazyLoad()
            ;
        HasManyToMany(x => x.applicationsUsedIn)
            .Table("dbo.ApplicationsQueries")
            .ParentKeyColumn("qryid")
            .ChildKeyColumn("appid")
            .Inverse()
            .LazyLoad()
            ;
    }
}


    public XmlNode runQuery(string appnname, string qryname, List<String> parms)
    {
        XmlNode xn = null;

        if ((null != appnname) && (appnname.Length > 0))
        {
            if ((null != qryname) && (qryname.Length > 0))
            {
                Query qry = md.getQuery(appnname, qryname);
                if (null != qry)
                {
                    if ((null != parms) && (parms.Count > 0)) //Passed parameters as List<String>
                    {
                        //These are the three lines I have tried
                        IList<QueryParameter> lqp = (IList<QueryParameter>)qry.parameters;
                        List<QueryParameter> lqp = qry.parameters.ToList<QueryParameter>();
                        List<QueryParameter> lqp = new List<QueryParameter>(qry.parameters);
    ...
    ...
    ...


使用QueryParameter类和地图更新。

public class QueryParameter
{
    public virtual int id { get; set; }
    public virtual Query query { get; set; }
    public virtual string name { get; set; }
    public virtual MOLEDataTypes type { get; set; }
    public virtual int order { get; set; }

    public QueryParameter()
    {
    }

    public override bool Equals(object obj)
    {
        if (obj == null)
            return false;
        var t = obj as QueryParameter;
        if (t == null)
            return false;
        if (query == t.query && name == t.name)
            return true;
        return false;
    }

    public override int GetHashCode()
    {
        return (query.id + "|" + name).GetHashCode();
    }
}


public class QueryParametersMap : ClassMap<QueryParameter>
{
    public QueryParametersMap()
    {
        Table("dbo.QueryParameters");
        Id(x => x.id);
        References(x => x.query).Column("qryid").Not.Insert();
        Map(x => x.name);
        Map(x => x.type).CustomType<MOLEDataTypes>();
        Map(x => x.order).Column("ordr");
    }
}

更多代码

    public Query getQuery(string appname, string qryname)
    {
        Query retq = null;

        using (ISessionFactory isf = getSessionFactory())
        {
            using (var sess = isf.OpenSession())
            {
                using (var tran = sess.Transaction)
                {
                    try
                    {
                        tran.Begin();
                        ...
                        USING session
                        ...
                    }
                    catch (Exception ex)
                    {
                        tran.Rollback();
                        sess.Close();
                        lws.logMessage(AppName, "getQuery", ex.ToString(), MessageType.Error, MessageLevel.Error);
                    }
                }
            }
        }

        return (retq);
    }

非常感谢您提供的任何提示或建议。

谢谢,

布鲁斯。

1 个答案:

答案 0 :(得分:0)

问题是您在getQuery中关闭会话,然后询问您的Query对象的参数列表,NHibernate尝试加载并由于缺少会话而失败。要解决您的问题,您需要确保您的会话在整个请求期间处于打开状态,或者至少在所有业务事务完成之前保持打开状态。

我建议你采用每个请求的会话方法。每当有Web请求时打开一个会话,并在会话结束时关闭它。这可以通过使用Global.asax文件轻松实现,您可以阅读here

public class Global : System.Web.HttpApplication
{    
    public static ISessionFactory SessionFactory { get; private set; }  

    protected void Application_Start(object sender, EventArgs e)
    {
        // Create a session factory when the application starts.
        // Session factories are expensive to create, and therefore you should create one and use it throughout your application.
        SessionFactory = Fluently.Configure()
                                 .Database(
                                    SQLiteConfiguration.Standard
                                        .UsingFile("firstProject.db")
                                 )
                                 .BuildSessionFactory();
    }

    protected void Application_BeginRequest(object sender, EventArgs e)
    {
        // Create a session per request.
        var session = SessionFactory.OpenSession();
        CurrentSessionContext.Bind(session);
    }

    protected void Application_EndRequest(object sender, EventArgs e)
    {
        // Close the session at the end of every request
        var session = CurrentSessionContext.Unbind(SessionFactory);
        session.Dispose();
    }

    protected void Application_End(object sender, EventArgs e)
    {
        // Close the session factory at the end of the application.
        if (SessionFactory != null)
            SessionFactory.Dispose();
    }
}

在上面的示例中,会在应用程序启动时创建会话工厂,建议这样做,因为创建会话工厂的成本很高。然后,每个请求都会创建一个会话,并在最后处理。通过使用这种方法,您可以节省大量的工作,因为一切都是自动完成的。

然后,要在代码中使用会话,您只需要调用GetCurrentSession(),就像这样:

var session = Global.SessionFactory.GetCurrentSession();

我希望有所帮助,并且最好的运气摆弄NHibernate。我建议你考虑阅读NHibernate 3.0 Cookbook以更好地理解NHibernate。