尽管存在记录,NHibernate中的Session.Get仍返回null

时间:2014-09-09 13:08:31

标签: c# asp.net sql-server nhibernate

我正在使用C#,SQL Server和NHibernate开发ASP.NET Web应用程序。检索数据库中存在的特定记录时,我得到null值。

在以下代码段中,我将根据AccountaccountID表中搜索记录。

public AccountVO getAccount(int accountID, ulong accountCollections)
{
    ISession session = HibernateUtil.getFactory().OpenSession();
    AccountVO accountVO = (AccountVO)session.Get(typeof(AccountVO), accountID);

    ...
}

0 个答案:

没有答案