So I have domain classes
class SalesRep {
SalesTerritory territory
}
class SalesTerritory {
hasMany=[accounts: AccountCustomer]
String territoryCode
}
class AccountCustomer {
String accountName
String accountCode
belongsTo = SalesTerritory
hasMany=[salesTerritories: SalesTerritory]
}
In the controller, I can get the accounts by:
def salesRep = SalesRep.findBy... //
def accounts = salesRep.territory.accounts
I would like to do two things:
1) Search for accounts with some string (ex. '%My Account%'), something like below:
def accounts = salesRep.territory.accounts.find("accountName like '%My Account%'")
2) Sort accounts
def accounts = salesRep.territory.accounts.sort("accountName")
I know I can add static mapping = { sort accountName } in the domain class, but what if I want to sort using a different field such as accountCode. Thanks, I tried using createCriteria, but couldn't get it to work.
Thanks.