nhibernate记事

Posted 卖果子的小男孩

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nhibernate记事相关的知识,希望对你有一定的参考价值。

  • code mapping proc
  •     var result = session.CreateSQLQuery("exec GetMemberGameActivity :mToken, :StartDate, :EndDate")
                            .SetResultTransformer(Transformers.AliasToBean())
                            .SetParameter("mToken", token)
                            .SetParameter("StartDate", startDate)
                            .SetParameter("EndDate", endDate)
                            .List().ToList();
  • mysql  参数用 ? ,SetParameter可采用index方式赋值
  • 清除指定缓存
  • sessionFactory.Evict(typeof(Cat), catId); //evict a particular Cat
    sessionFactory.Evict(typeof(Cat)); //evict all Cats
    sessionFactory.EvictCollection("Eg.Cat.Kittens", catId); //evict a particular collection of kittens
    sessionFactory.EvictCollection("Eg.Cat.Kittens"); //evict all kitten collections


以上是关于nhibernate记事的主要内容,如果未能解决你的问题,请参考以下文章

Code changed world

NHibernate 通过代码 ManyToOne 与 CompositeIdentity 进行映射

NHibernate OneToMany 代码映射

代码优先实体框架或 NHibernate

如何通过代码将 Id 映射到 NHibernate 映射中的私有支持字段?

NHibernate 和代码优先