Tagged Questions
The createcriteria tag has no wiki summary.
4
votes
3answers
4k views
NHibernate: CreateCriteria and Exists clause
How can I write the following SQL using CreateCriteria:
SELECT * FROM FooBar fb
WHERE EXISTS (SELECT FooBarId FROM Baz b WHERE b.FooBarId = fb.Id)
3
votes
2answers
193 views
Sorting with Mathematical Formula with nHibernate (C#)
public class Feedback
{
public virtual int Id { get; private set; }
public virtual string ContentText { get; set; }
public virtual DateTime FeedbackDate { get; set; }
public virtual Student ...
3
votes
2answers
6k views
hibernate - createCriteria or createAlias?
If I want to search those students who take class "Math" and "John" is his group:
shoud I use createCriteria or createAlias?
Criteria:
Criteria criteria = session.createCriteria(Student.class);
...
2
votes
1answer
259 views
Cannot perform unit test with function which have createCriteria() statement
I want to write a unit test (by JUnit) to test value of this function in Groovy:
String getPeopleNamesById(int[] peopleIds) {
List<String> names = People.createCriteria().list{
...
1
vote
3answers
99 views
nhibernate CreateCriteria wildcard Like when
In SQL I can write
SELECT blah FROM Clients
Where @p1 Like '%'+lastname+'%'
How do I represent this with CreateCriteria in Nhibernate?
I've tried ...
1
vote
1answer
219 views
Can I select specific columns with Hibernate “createCriteria()”?
I used createCriteria() and setFetchMode() methods to join and select. I don't need all columns so I want to select specific columns to improve performance, but I can't find how to do it. Maybe should ...
1
vote
1answer
295 views
NHibernate CreateCriteria not working correctly with association and dates
I am trying to create an association to load a list of parent objects based on a child objects date field. I only want parent objects where the date is >= a given date.
The problem is, when I use ...
1
vote
1answer
214 views
Why doesn't session.CreateCriteria(typeof(…)) fail for an unmapped type?
For every entity that I create I write a unit test that just loads one record from the database to see if the query works and the data can be set on the entity correctly. You could see this as a unit ...
1
vote
3answers
164 views
How do I get NHibernate to do a join?
I've used Fluent NHibernate to hook up a store and employee class where Stores can have many employees as follows:
public class Store
{
public virtual IList<Employee> Employees { get; set; ...
1
vote
1answer
516 views
NHibernate CreateCriteria and CreateQuery generates different sql?
I'm new to NHibernate and can't figure out why these two statements generates different sql.
the first one only get the ClientInformation (with Information and Client being Proxies) which is what i ...
1
vote
2answers
2k views
CreateCriteria inside Expression.Disjunction() fluent nhibernate
criteriaCount.CreateCriteria(AdvertisementsProperties.City.ToString())
.Add(Expression.Like(CitiesProperties.Name.ToString(), query, MatchMode.Anywhere))
...
0
votes
0answers
18 views
issue with Hibernate Query
I have 12 Summary tables(Entities) one for each month txnJan, txnFeb,..and so on.. it has fields like date, transactionCount, location.
Now I have been given a date range as input, I want to get a ...
0
votes
1answer
189 views
Grails / GORM criteria query with hasmany String
I have a domain object (Cat) like this:
class Cat {
String name
static hasMany = [
nicknames: String
]
}
(A cat has a name, and also has many nicknames (which are Strings))
And I ...
0
votes
2answers
158 views
GORM createCriteria with one-to-many relation
since a couple of hours I try to figure out how to create a criteria with a kind of must-be-in-list criterion.
If I reduce my code I have following two domain classes:
Hotel - The base domain class ...
0
votes
1answer
63 views
I am facing a problem with projections in createCriteria
I am facing a problem to get the required result from this closure
def authors{
results = Message.createCriteria().list {
projections {
author{
...
0
votes
1answer
594 views
Load collections eagerly in NHibernate using Criteria API
I have an entity A which HasMany entities B and entities C. All entities A, B and C have some references x,y and z which should be loaded eagerly.
I want to read from the database all entities A, and ...
0
votes
4answers
929 views
NHibernate query CreateCriteria
Is it possible to chose what columns I want in return from Session.CreateCriteria() ?
egz.:
var x = session.CreateCriteria();
x.CreateAlias("EmployeePosition", "employeePosition");
...
0
votes
0answers
225 views
Using CreateCriteria within PreInsert/PreUpdate Event Listener
I want to have a centralize place to check for inserts or updates to an object, and for certain scenarios, I want to update it's parent based on the information from the child. I have the following ...
-1
votes
1answer
16 views
can we have an if condition inside Hibernate Create Crtieria in grails
I am using HibernateCriteriaBuilder api to write my Criteria Queries. I want to know if inside Criteria we can have conditional logic like if statement?
for eg.
OnemonthList=it.createCriteria().list ...