Tagged Questions
-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 , ...