我正在使用C#,SQL Server和NHibernate开发ASP.NET Web应用程序。检索数据库中存在的特定记录时,我得到null
值。
在以下代码段中,我将根据Account
在accountID
表中搜索记录。
public AccountVO getAccount(int accountID, ulong accountCollections)
{
ISession session = HibernateUtil.getFactory().OpenSession();
AccountVO accountVO = (AccountVO)session.Get(typeof(AccountVO), accountID);
...
}