NHibernate 中处理可空字段的问题
2.01版之后的NHibernate处理可空字段不再需要引入null.nhibernate.dll了
已支持可空类型。
只要按如下配置就不必为可空字段烦恼了
hbm.xml中配置 not-null
<property name="LastLoginTime" column="LastLoginTime" type="DateTime" not-null="false"></property>
model中配置为可空
public virtual DateTime? LastLoginTime { get; set; }
专注云开发 目前选定的开发平台是 Azure 和 Salesforce
选定的开发工具是 Asp.net MVC 和 Force.com