criteria-api
NHibernate projection: How to get a typed type using the Criteria API with projection
List<object[]> products = GetSession().CreateCriteria<Product>() .SetProjection(Projections.ProjectionList()[详细]
2022-12-19 22:55 分类:问答Converting a HQL-query which includes elements() to Criteria API
I\'m havi开发者_JAVA技巧ng trouble converting the following HQL-query to Criteria API and I was wondering if I could get some help from you guys[详细]
2022-12-17 09:04 分类:问答Using Hibernate Criteria API To Query Many-To-One Relationships with Projections
I am trying to use Criteria API in following scenario: I have two tables, Schedule and Route (wi开发者_运维技巧th their classes and mappings).[详细]
2022-12-12 04:02 分类:问答NHibernate Criteria using Projections for Substring with in clause
I had a scenario in Oracle where i need to match a substring part of column with a list of values. i was using sqlfunction projection for applying the substring on the required column, and added that[详细]
2022-12-11 14:14 分类:问答