I have column in table with DATE datatype. I want to set predicate in which I want to compare only date without time. Because of time in date I am not getting proper result.
My current code -
[fetchRequest setPredicate:[NSPredicate predicateWithFormat:@"((install_date > %@) AND (install_date <= %@))", fromDate,toDate]]