简体   繁体   中英

SQL to NHibernate Criteria Query

I'm using Sharp Architecture for an MVC application and I'm trying to generate a nhibernate criterion query for the following SQL:

select top 10 p.* from Tab1 p 
                join Tab2 v on p.Id = v.Tab1Fk
                join Tab3 sbu on v.Id = sbu.Tab2Fk
                where sbu.DateTime >= 12/12/2002 00:00:00
                group by p.Id, p.Name, p.CoCode, p.CuCode, p.StCode, p.ParentFk, p.LastGenerated
                order by COUNT(sbu.Id) desc

Currently I've got:

var crit = Session.CreateCriteria<Tab1>();
        crit.SetMaxResults(numberOfRecords);
        crit.CreateCriteria("Tab2", "v", JoinType.InnerJoin)
            .CreateCriteria("Tab3", "sbu", JoinType.InnerJoin)
            .Add(Restrictions.Ge("sbu.DateTime", since))
            .AddOrder(Order.Desc(Projections.Count("sbu.Id")));
        return crit.List<Tab1>();

But it throws errors, can anyone help?

Have you considered using either HQL or NHibernate.Linq ? I have several projects under my belt, and I almost always never even bother with the criteria api.

const string hql = @"select p.* 
                    from Tab1 p
                    join p.Tab2 v where p.Tab2.Id = v.Id
                    join p.Tab3 sbu where v.Id = sbu.Tab2.Id
                    and sbu.DateTime >= :since
                    and rownum <= 10
                    group by p.Id, p.Name, p.CoCode
                    order by count(sbu.Id) desc";

var list = Session.CreateQuery(hql)
                .SetParameter("since", DateTime.Now /* your date */)
                .List<Tab1>();

It seems like you're good with SQL, so either of them would seem natural.

Edit: I must say I have never ordered by count(item), so my syntax there might be off. :)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM