Hello!
I am using a DictionaryMapping in my code, and I wanted to use
#includesKey: in #where: clause (something akin
each tools includesKey: aToolId
) to select only rows for which DictionaryMapping uses certain key. It
failed with the error in the lines of "#tools does not resolve to
field". I had to come up with
each tools anySatisfy: [ :tool | tool id = aToolId ]
Is it the bug / feature / problem in my approach? If bug, is it planned
to add #includesKey: translation to DictionaryMapping?
Thanks, Herby