1

Below projection query throws " The name 'NHibernateUtil' does not exist in the current context" error when I try to run the app. I tried including namespace NHibernate.Util but it still wont work. Any help would be appreciated.

 template.Criteria.SetProjection(
                Projections.ProjectionList()
                .Add(Projections.GroupProperty(Projections.SqlFunction("date",NHibernateUtil.Date,Projections.GroupProperty("IssueDateTime")))
, "DateVal")
                .Add(Projections.Sum("TotalFare"), "TotalFare")
            );
developer
  • 5,178
  • 11
  • 47
  • 72

1 Answers1

3

The NHibernateUtil class is in the NHibernate namespace, not NHibernate.Util

Mauricio Scheffer
  • 98,863
  • 23
  • 192
  • 275