3
votes
1answer
28 views
Hibernate queries slow down drastically after an entity is loaded in the session
I'm using Hibernate EntityManager, and am experiencing a weird slowdown in my Hibernate queries. Take a look at this code:
public void testQuerySpeed() {
for(int i = 0; i < …
1
vote
2answers
48 views
Hibernate: ORDER BY using Criteria API
Hi guys,
When I write a HQL query
Query q = session.createQuery("SELECT cat from Cat as cat ORDER BY cat.mother.kind.value");
return q.list();
Everything is fine. However, when …
2
votes
1answer
42 views
Nhibernate ICriteria and Using Lambda Expressions in queries
hi i am new in NHibernate and i am a little confused.
Suppose we have a product table.
Let the product table have 2 columns price1 and price2.
then i may query mapped product en …
0
votes
1answer
53 views
HQL with a collection in the WHERE clause
Hello good people!
I've been trying for the this whole a query who is officially giving me nightmares. The system is a user and contact management. So I have UserAccount, Contac …
0
votes
2answers
39 views
Nhibernate - How to debug “Antlr.Runtime.NoViableAltException”?
With many HQL queries I am trying, time and time again I am getting this exception:
Antlr.Runtime.NoViableAltException
This is really generic and unhelpful - does anyone know ho …
0
votes
1answer
32 views
HQL to SQL converter
Does anyone know how to convert NHibernate HQL to SQL Scripts?
1
vote
1answer
33 views
Where are the NHibernate/Hibernate HQL and ICriteria query examples?
I'm still quite new to NHibernate and most of it I'm getting to grips with. One area that I'm really lacking a proper understanding of though is querying (at least when it comes t …
0
votes
1answer
40 views
HQL: get a list where a join contains nulls
I have three objects.
public class ParentClass
{
public virtual Guid ParentClassId { get; set; }
public virtual IList<Child> Children { get; set; }
}
public class Child
{
p …
1
vote
0answers
22 views
Hibernate Second-Level Query Cache not working Eager Fetching
In NHibernate Profiler I observed that when I use eager fetching on an association, using "left join fetch" in an HQL Query or .SetFetchMode() in a Criteria Query the query no long …
0
votes
1answer
45 views
how to combine java.util.Calendar and HQL Between
I'm trying to get the books that were loaned between two dates.
Since data has the lovely 2009 is shown as 109 feature I decided to use calendars.
However when writing my HQL I ra …
0
votes
2answers
36 views
NHibernate criteria datetime format issue
Hi
I have a simple nHibernate criteria query which is looking for records with a datetime less than today:
example:
criteria.Add(Expression.Le("TheDate", DateTime.Today));
How …
0
votes
0answers
39 views
How to get dummy column in hq uery in nhibernate?
Hi, How can i add a dummy column in HQL query.
SQL : select Actualcolumn, 1 from Table
In NHibernate How can I do that, I googled for this but I didn't find any solution.
HQL: …
1
vote
1answer
38 views
Hibernate Join with OR clause
I'm trying to figure out how to generate a simple join that uses an 'or' clause contained within it, using HQL or Hibernate annotations. Here is an example of what I want the SQL t …
1
vote
1answer
125 views
Hibernate HQL: how to use a complex left join fetch
Hi all,
I want to add a left join on TASK table when the following condition occurs:
LEFT JOIN FETCH
PROMPT p on (t.id = p.task.id and p.applicationName in ('XXX …
0
votes
1answer
19 views
EJB-QL Query List inside Object
I'm attempting to write what should be a simple (I hope) EJB-QL query.
Here are my objects:
public class Room {
private String name;
private List<RoomConfiguration&g …
