The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
28 views

In NHibernate, using a Disjunction gives double results

I'm trying to make a select with DetachedCriteria, I want to add several conditions seperated by OR at runtime. If I use: Restrictions.Or( cond1, Restrictions.Or(cond2, Restrictions.Or(cond3, ...
0
votes
0answers
26 views

How to use DetachedCriteria for a complex sub sub query for different properties in a sub query?

I have this classes: public class Property { public virtual int Id { get; set; } public virtual IList<Value> AllValues { get; set; } } public class Value { public virtual int Id { ...
1
vote
1answer
30 views

Detached criteria - how to to specify join conditions

I am trying to retrieve some data from database using Nhibernate detached criteria. The problem is that I dont know how to specify the join conditions in Detached criteria. Please find my code below, ...
1
vote
1answer
52 views

How do I use a in clause 'in' a grails.gorm.DetachedCriteria?

Is it possible to use an 'in' criteria in a Grails DetachedCriteria? This is what I have, def query = new DetachedCriteria(DomainObject) // list is actually built up from another query, // but for ...
0
votes
2answers
61 views

Is there a cleaner, more Grailsy way to write this query?

I have a couple scenarios where I want to retrieve a single Advertiser and eager fetch most of its object graph. I definitely don't want to do this by default, so I've been searching for the right way ...
0
votes
1answer
25 views

How to translate a QueryOver to DetachedCriteria?

I do not wish to know why it's better to use QueryOver and that it's newer. How can I translate the following QueyOver to a DetachedCriteria: QueryOver<Category>().Where(x => ...
0
votes
1answer
43 views

How to use NHibernate DtachedCriteria sub queries to filter by list of referenced entities properties?

I want the outcome to be a single sql statement. I have the following structure: public class B { public virtual int Id { get; set; } public virtual int BNumber { get; set; } } public class A ...
0
votes
2answers
49 views

How to write this SQL in HQL or using Criteria?

Is there any way to rewrite equivalent of below SQL in Hbernate HQL or Using Hibernate Criteria (or DetachedCriteria)? It should return single record from database. And Which one is advisable using ...
0
votes
0answers
54 views

How to perform date operations in hibernate DetachedCriteria

I want to create a detached criteria, which should produce SQL like this: select count(*) from Report where createDate <= dateadd(year, -4, modificationDate) and createDate >= dateadd(year, -6, ...
0
votes
0answers
71 views

could not resolve property: t of:

Why does I get this exception when I try to run the following code. could not resolve property: t of: The following is the code segment. public boolean isTaxCodeInLeger(final Long code) { if ...
-1
votes
1answer
235 views

java.util.ArrayList cannot be cast to java.lang.Long hibernate detached criteria

I have a Hibernate DetachedCriteria Code here. I receive a java.util.ArrayList cannot be cast to java.lang.Long when I run the application! basically what I do here is there are two lists each with ...
0
votes
0answers
432 views

how to use subquery with projection using criteria in hibernate

I have written a query in sql which is like... SELECT c.clientfirstname, c.clientlastname, c.clientage, c.status, Sum(i.annualamount) AS amount, p.planname, ...
0
votes
0answers
58 views

How to code variable number of 'Or' clauses with Criteria?

I have the following criteria query as : Criteria criteria = session.createCriteria(Parts.class); Iterator<String> iterator = searchList.iterator(); Disjunction or = ...
1
vote
0answers
58 views

Using Criteria for sub-queries

I have two tables in my Database, Tuser and TCompany, where Tuser : id | name | email Tcompany : id | companyName | userId where userId is foregn key of Tuser table. I have written a ...
0
votes
2answers
171 views

how to implement Subqueries.rowCount(DetachedCriteria dc)

When a DetachedCrieria has projections, how to get the row count of the DetachedCriteria result set? For HQL: select count(*) from (select name, sum(grade) from score group by name). For hibernate, ...
0
votes
2answers
79 views

How should we query multiple one-to-many relations

Domain I'm trying to optimize my queries and need some advise. Is this the preferred way of querying one-to-many relations? My domains looks like this: MeasureSet /// <summary> /// ...
1
vote
1answer
106 views

Hibernate how to write Detachedcriteria in 2 decimal point?

Here I have 2 value example price and discountPrice. When I using mysql select price, discountPrice from stockItem where price = discountPrice; I found no record. After I changed to select ...
0
votes
1answer
60 views

Hibernate Query To Search Content in a Forum Questions

I want to search the contents in a forum especially forum questions for example: searchString = "Hibernate Session Configuration"; will give corresponding details in the Forum Questions but all ...
0
votes
0answers
130 views

SQL to DetachedCriteria

This is my classes; public class User { private int userId; private UserProfile profile; //@OneToOne relation private UserType type; //@OneToOne relation } public class UserProfile { ...
0
votes
1answer
271 views

select with detachedCriteria and order by sum of different column

i have this simple MySQL query : SELECT * from foo ORDER BY (col1+col2+col3) DESC; the result of col1+col2+col3 is an Integer. is there a way to make this with DetachedCriteria using hibernate for ...
1
vote
2answers
500 views

Hibernate DetachedCriteria mutiple results in java

This is the SQL statement that I have. SELECT USER_PROFILE.FIRST_NAME, USER_PROFILE.LAST_NAME, USER_PROFILE.USER_TYPE FROM USER_PROFILE INNER JOIN USER_LOGIN_STATUS ON ...
0
votes
1answer
167 views

Criteria with multiple table Eager join

Code DetachedCriteria criteria2 = DetachedCriteria.forClass(MasterResult.class); criteria2.createAlias("masterCCHolders", "masterCCHolders", CriteriaSpecification.INNER_JOIN); ...
0
votes
1answer
84 views

SetFirstResult(0) works but not SetFirstResult(1)

I'm trying to do pagination on my webapp with MVC3 and nhibernate, the first page works fine but nothing else than SetFirstResult(0) works! .SetFirstResult(request.pageIndex * ...
0
votes
1answer
227 views

DetachedCriteria - How to convert detached criteria result to integer?

Please help me with this. Im using detached criteria to get the total number of customers. In my CustomerDaoImpl: @Override public int getCustomerSize() { DetachedCriteria dc = ...
0
votes
0answers
169 views

hibernate detached criteria - How to add a native sql statement

Hi I have very big problem. I have a DetachedCriteria and I named it dc. I declared it this way DetachedCriteria dc = getDetachedCriteria(). I want to add a collation statement before the order by. ...
4
votes
1answer
827 views

Eager fetching nested object with DetachedCriteria in Hibernate

I have to modify a large Hibernate DetachedCriteria query to fetch some additional associations. My object graph resembles the structure below, I want to fetch the sales associated with each Car: ...
0
votes
1answer
629 views

using detachedCriteria as a subquery for in clause

I am trying to use a detached criteria as subquery for 'in' clause but somehow it does not work: def trades = new DetachedCriteria(Trade).build { projections { property "tradeNbr" } } ...
0
votes
1answer
47 views

Hibernate Restcrition Criteria OR with DetachedCritera

I am trying to create a detached criteria that has an OR restriction DetachedCriteria subquery = DetachedCriteria.forClass(Component.class); ...
2
votes
1answer
2k views

Hibernate subquery detachedCriteria

How to write a subquery in hibernate which is having multiple subqueries. for example select * from project_dtls where project_id in (select project_id from project_users where user_id = ...
1
vote
1answer
84 views

How to change this statement to detached criteria

This statement is to check if the user is existing in the database. public boolean isExisting(int userId) { String sql = "{call isExistingUser(?)}"; Session session = null; boolean ...
1
vote
1answer
115 views

Using results from sproc in Criteria Restrictions.In

I have this detached criteria: DetachedCriteria students = DetachedCriteria.For(typeof(Submission)) .SetProjection(Projections.Property("ID")) .Add(Restrictions.In("JicsStudent.HostID", ...
2
votes
0answers
1k views

hibernate - How to set max result in DetachedCriteria?

I am using DetachedCriteria and I just want the first result of the query so I want to do something like LIMIT 1 in DetachedCriteria. When I searched google I found setMaxResult but its Criteria. How ...
0
votes
3answers
1k views

What is the best way to limit results using a DetachedCriteria of Hibernate in Java?

I'm using Hibernate 3.5.6-Final in Java. Since I don't have access to the Hibernate Session, I'm using a DetachedCriteria. So, I would like to know what is the best way to limit the results for a ...
1
vote
1answer
346 views

How dangerous is a compact anti-pattern, DetachedCriteria based, DAO utilitary for hibernate?

Long time ago I created an one-class-hibernate-util to ease my life on really really small applications using DetachedCriteria, as follows: import java.util.List; import ...
-1
votes
2answers
171 views

Join tables hibernate + group by

I need to do this query with Java + Hibernate. SELECT table2.id, COUNT(table2.id) AS count FROM table1 JOIN table2 ON table1.fk_tb2 = table2.id --many2one GROUP BY ...
0
votes
1answer
1k views

DetachedCriteria with Projections on property but Restrictions on subproperty of another property = bug?

Now this is screwed. I'm using Hibernate 3.1.3. I have a mapped class "Visit", and two of its properties are a timestamp "dtTmEntrance" and "visitor", from mapped class "Visitor". I'm using ...
1
vote
1answer
132 views

NHibernate detached OrderBy

I am using a repository pattern to wrap NHibernate entities. One of the methods is public IList<T> GetAll() which simply returns all items of that entity. The implementation is done in either ...
0
votes
0answers
130 views

Convert HQL query to NHibernate Criteria api

I have this HQL query: var t = Session.CreateSQLQuery(@"SELECT * FROM Entity1 c WHERE c.Flag = 1 ORDER BY (SELECT COUNT(*) FROM Entity2 a WHERE Entity3Id in (Select Id from Entity3 cc where ...
1
vote
0answers
260 views

Hibernate detached criteria issue

I am trying to execute the following query using hibernate criteria. But, it is not giving me correct results. Query: SELECT * FROM TableA a WHERE NOT EXISTS (SELECT * FROM ...
0
votes
0answers
72 views

DetachedCriteria Creating from code

Hello im trying to make detached criteria from code and i got problem that restrictions are not working i dont know why all i think is good so maybe someone can help me with it. public override ...
1
vote
0answers
190 views

Grouping with DetachedCriteria without column selection

How to make grouping without selecting the column? detachedCriteria.setProjection(Projections.groupProperty("col1")); OR detachedCriteria.setProjection(Projections.sqlGroupProjection("col1", ...
0
votes
2answers
254 views

Hibernate queries where with many-to-many fields

I have a model A that has a many to many with B, which has a property c. Like the following. class A { @ManyToMany List<B> bs; } class B { @ManyToMany List<A> as; String c; } ...
0
votes
1answer
360 views

Hibernate Criteria API filter a collection proporty

I have Class A{ List <B> bList } Class B { String name; } Now I want to write query using Hibrnate criteria API , so that I only get A pojo's with a filtered bList property having only ...
0
votes
1answer
1k views

Grails : from HQL to DetachedCriteria Query

Let say I have the following domain model : class Book { String title Set authors static hasMany = {authors: Author} } class Author { String name } The HQL query to retrieve a collection ...
0
votes
1answer
328 views

Hibernate using DetachedCriteria with interfaces

Using Hibernate 3.6.8.Final and Spring 3.0.5.RELEASE , I'm trying to add some Common DAO functionality for classes that have multiple implementations overridden higher up to implement the specific ...
2
votes
1answer
1k views

Criteria subquery with not null

I want to convert the following subquery to use hibernate subquery: getCurrentSession().createQuery("from Employee where id in (select adminId from Department where adminId is not null)") ...
0
votes
0answers
133 views

Castle ActiveRecord .net C# how to implement IndexOf

I would like to implement IndexOf for ActiveRecord mapped class by using ordering and custom filtering criteria something like this: long MyEtityType.IndexOf( MyEntityType myEntityInstance, ...
0
votes
1answer
694 views

NHibernate SetFetchMode doesn't work with nested criteria

Assuming I run the following code: var placementCriteria = DetachedCriteria.For<ResidentialPlacementClientService>(); placementCriteria.Add(Restrictions.Le("StartDate", effectiveDate)); ...
1
vote
0answers
941 views

Querying Hibernate Parent/Child with Subquery Criteria

EDIT: relevant: https://forum.hibernate.org/viewtopic.php?f=1&t=946236&start=0 but still no solution there. I have a parent/child relationship. The parent maps a set of string tags. The ...
0
votes
1answer
802 views

one-to-many detached Criteria parent table fetch based on child table

i have one problem in one-to-many mapping using hibernate. i have 2 classes, Person and Address. Person is mapped by Address ( one-to-many) i want get all Person where Address = "xxxx";. how to ...

1 2 3