For example:
There is a NSDateComponents *dueDate (Transformable) property of Task * entity. And there is intend of fetching all objects that have NSDate * value of dueDate less than [NSDate date]. NSDateComponents object is created of calendar units constant NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit.
[NSPredicate predicateWithFormat:@"dueDate < %@", [NSDate date]] is type mismatch. How to create NSDate object from dueDate before equation?
Or is there a better way to compare NSDateComponents?