标签:NHibernate

Nhibernate LINQ DateTime.AddDay 异常 NotSupportedException

在C# Nhibernate开发中使用了linq 查询,我需要对比2个DateTime类型的时间,其中用到DateTime.AddDay(),代码如下: <code>var patients = from c in session.Query<Patient>() where c.DateAdded.AddDays(1) < c……

No persister for: System.Object[] NHibernate异常

No persister for 已知的4种可能原因: 1、配置文件后缀名写错 mapping file 必须是.hbm.xml结尾 2、Web.config配置里面引用实体 <code><span class="pun"><</span><span class="pln"……