The createcriteria tag has no wiki summary.
1
vote
3answers
582 views
Grails queries with criteria: how to get back a map with column?
Is it possible, to query grails with criteria and receive a list of maps instead of a list of lists? I would like to have the column names in the results in order to then work with an 'associative ...
0
votes
2answers
129 views
Hibernate createCriteria list() return identical objects
can you help me with the code below. I'm querying Hibernate and the number of objects in the list
returned corresponds to the number of rows in my table. But it seems that every object in the list is ...
0
votes
2answers
163 views
NHibernate CreateCriteria with Restrictions does not work as expected
The bellow given code sample is to retrieve all the active records.
session.CreateCriteria<VesselMasterData>()
.CreateAlias("BasicInfo", "bsInfo")
...
2
votes
1answer
258 views
Hibernate createCriteria JOIN, ORDER, DISTINCT from one level
I have 3 classes: first, second, third
I have createria approximately like this:
First.createCriteria().listDistinct {
if(....){fetchMode("second", FetchMode.JOIN)
...
1
vote
1answer
208 views
Grails Projections not returning all properties and not grouped
How to get it so i return all of the projections from the below
def c = Company.createCriteria()
def a = c.list(params){
projections{
property 'id', property 'name'
}
}
if(a.size() ...
1
vote
1answer
526 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 ...
0
votes
1answer
25 views
Is there a 'contains' functionality on a collection of ObjectId property of a domain object for withCriteria?
I have a Subscription domain object which has a List of ObjectId as one of its properties, say 'subscribed'. I'm on Grails 2.1.2 and MongoDB.
class Subscription {
ObjectId id
...
0
votes
1answer
166 views
CreateCriteria with projections does not select all columns
My Question is exactly like
Grails Projections not returning all properties and not grouped
I have a following criteria
def sharedDocumentsInstanceList ...
0
votes
1answer
159 views
Grails: createCriteria wrong Results
I'm trying to get some data out of my Database by some criteria, but
i won't geht the right results.
My Method:
public ArrayList getAllBudgetsByUserAndDateAndActive(ArrayList dates, uid){
...
1
vote
0answers
106 views
Turn SQL String into Grails CreateCriteria
Hi everyone i have this Grails Code:
free_search = ReportFree.createCriteria().list {
or {
report{
ilike("description", "%${params.search}%")
...
0
votes
0answers
27 views
How can I write this operation inside a createCriteria?
public class Company
{
public virtual int? ID { get; set; }
public virtual string Name { get; set; }
public virtual IList<Worker> Workers { get; set; }
}
public class Worker
{
...
0
votes
0answers
306 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 ...