I have a question regarding the construction of an NSPredicate to fetch entities from a Core-Data store backed by SQLite:
One of my entities has a string typed attribute called "uti". Is it possible to construct a predicate that matches wether or not "uti" conforms to another UTI?
After looking at the documentation I've tried:
NSPredicate(format: "uti UTI-CONFORMS-TO %@", aUti)
but this does not seem to be supported.
Thanks in advance!