queryover
NHibernate QueryOver<> - Aggregate function over SubQuery
How can I write the following SQL statement using QueryOver<> syntax? SELECT COUNT(*) FROM ( SE开发者_JAVA百科LECT FirstName,LastName[详细]
2023-03-25 20:38 分类:问答What can be used as a NHibernate QueryOver alias?
I know so far that a local variable or a local property can be used as an alias like so ClassA _aliasA;[详细]
2023-03-25 11:48 分类:问答Converting a my-sql query to nhibernate queryover
Could someone please help me or get me started with converting this query to an nhibernate queryover query?[详细]
2023-03-25 08:57 分类:问答Fetching Orders and Orderlines Count with subqueries
I am in process to port an old App to Nhibernate. The old application uses ORACLE packages extensively and I want to get rid of that.[详细]
2023-03-25 08:00 分类:问答How do I append Skip and Take to an nHibernate IQueryOver
I want to do this: NHibernate.IQueryOver<DataAccess.Domain.Product, DataAccess.Domain.Product> query = session.QueryOver<DataAccess.Domain.Product>();[详细]
2023-03-23 20:45 分类:问答queryover and transformusing loses the ability to lazy load
I want to try and introduce the DISTINCT keyword into SQL, basically I require the following SQL:- SELECT distinct this_.Idas y0_,[详细]
2023-03-23 06:45 分类:问答How to use SelectList with nhibernate Queryover?
I have this TimeTable timeTable = null; List<TimeTable> timeTableEventSettings = session.QueryOver<TimeTable>(() => timeTable)[详细]
2023-03-22 15:28 分类:问答NHibernate QueryOver with subquery or other ideas how this can work?
I have following queries: Model.RampActiveHour rah = null; var defaultWeekQuery = QueryOver.Of<Model.RampAdditionalDefaultWeek>()[详细]
2023-03-22 00:42 分类:问答Return TSubType from nhibernate QueryOver
I am trying to select the children from a parent collection using QueryOver in nhibernate. This is what I am trying to do in HQL:[详细]
2023-03-21 23:16 分类:问答Nhibernate join with select columns from both tables
Ok after several attempts I am stuck on this one! I am using NHibernate with QueryOver as below. I have a Product and ProductReview as[详细]
2023-03-19 18:56 分类:问答