The tag has no wiki summary.

learn more… | top users | synonyms

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
0answers
25 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
2answers
280 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{ ...
3
votes
2answers
139 views

gorm projection and loss of metainformation

When using projection on the properties, the result is returned as the list with the elements in the same sequence as that defined in the projections block. At the same time the property names are ...
1
vote
3answers
573 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
141 views

Grails MissingMethodException: createCriteria in WAR, Runs Locally

I have a Grails app that is pretty vanilla. Domain objects over controllers. Everything runs fine when using locally using run-app or run-war. When I create the WAR file using grails war and deploy to ...
0
votes
3answers
80 views

grails list and createCriteria()

I have a list function for a grails web app. This list will populate a table base on some search criteria. Im using hibernate createCriteria to try to achieve this. In this case they can search by 2 ...
2
votes
1answer
257 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) ...
0
votes
1answer
56 views

Can I do a math operation inside a createCriteria

Is it posible to do a math problem inside a createCriteria? For example: If in my table I have two columns, if the two together make 100 I don't want to show it in my result of the query or if ...
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 ...
1
vote
1answer
84 views

Explain the difference between CreateCriteria(typeof(Cat)) and CreateCriteria<Cat>()

I've seen both formats in different examples, tutorials, blogs, etc, but for the life of me, I cannot find an explanation for the difference. What is the difference between ICriteria crit = ...
0
votes
1answer
144 views

Grails: Use results of Criteria + projections as a filter on the original table

I have the following table/model: class Post { int id; String comment; static belongsTo = [category_id:Category]; } I wish to create a query that can filter out the last Post (highest id) per ...
0
votes
3answers
50 views

GRAILS: createCriteria NAND

I have a bunch of rows from my query in createCriteria, but some changes have to be made, I need to hide the rows with a 0 in a column and a letter A in other column, but i won't hide them if they ...
7
votes
3answers
16k 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); ...
0
votes
2answers
128 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 ...
1
vote
1answer
204 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
0answers
104 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
2answers
162 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") ...
1
vote
1answer
77 views

how to trim a property in createCriteria

I am trying to trim a projection property but it does not let me do that. def c = Book.createCriteria() def books = c.list { projections { property ("title") } def now = new ...
-1
votes
2answers
218 views

using createCriteria with order based on a belongsTo property

I have the next scheme: class UserProfile { String title String firstName String lastName static belongsTo = [user:User] static constraints = { user nullable:true , ...
0
votes
1answer
178 views

compare two objects from same domain createCriteria Grails

Hi I have the following HQL query which I am running using executeQuery(): def q = Domain.executeQuery("Select d0 from Domain d0 where d0.id = (select min(d1.id) from Domain d1 where d1.code = ...
2
votes
1answer
915 views

Build createCriteria in Grails dynamically and in a DRY way?

I'm working on building a createCriteria dynamically. So far, so good: obj is the domain object(s) I want back rulesList is a list of maps which hold the field to be searched on, the operator to ...
4
votes
1answer
215 views

Is there a 'contains' functionality on a collection property of a domain object for createCriteria?

I have an Auction domain object and a User domain object. An Auction hasMany Users. What I'd like to do, using createCriteria, is something like this: def c = Auction.createCriteria() def l = ...
0
votes
1answer
158 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){ ...
0
votes
3answers
288 views

NHibernate query collection

I have a users and roles table. A user can have multiple roles. I want to grab all of the users without a specific role. The problem is if a user has 2 roles, one being the role we don't want, the ...
1
vote
1answer
520 views

grails createCriteria how do i loop over restrictions

i can do this: def criteria = Category.createCriteria(); def results = criteria.list{ like('categoryName', "%abc%") or like('categoryName', ...
0
votes
1answer
651 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 ...
1
vote
3answers
1k 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 ...
2
votes
1answer
909 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
788 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 ...
1
vote
3answers
351 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
2k 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
2answers
326 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 ...
1
vote
2answers
3k views

CreateCriteria inside Expression.Disjunction() fluent nhibernate

criteriaCount.CreateCriteria(AdvertisementsProperties.City.ToString()) .Add(Expression.Like(CitiesProperties.Name.ToString(), query, MatchMode.Anywhere)) ...
2
votes
1answer
717 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
1answer
523 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
380 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 ...
9
votes
3answers
7k 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)
1
vote
1answer
782 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 ...
0
votes
1answer
1k 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
2k 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
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 ...