Original Reporter: pledbrook
Environment: Not Specified
Version: Not Specified
Migrated From: http://jira.grails.org/browse/GPMONGODB-18
It should be possible to query on dynamic properties with standard GORM dynamic finders. So for example, if I add some properties like so:
{code}
def p = new Plant(name:"Pineapple")
p['color'] = 'Yellow'
p['hasLeaves'] = true
p.save()
{code}
I should be able to execute the query
{code}
def yellowPlants = Plant.findAllByColor("yellow")
{code}