Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
由于我使用的是旧版本的 .net,我正在使用旧版本的 nHibernate。QueryOver 不是一个选项。用 nhibernate 计算表行数的有效方法是什么?
您在评论中显示的 HQL 是正确的:
int count = (int)s.CreateQuery("select count(*) from [classname]").UniqueResult();
这将返回由 表示的表中的行数classname。
classname