looking to delete the records when two attributes of same table are same (%k1 = %k2).
Example in table User, delete records which has User.firstName == User.lastName. Note NSPredicate(format: "firstName != lastName") does not help even to fetch records.
Looks a kind of self join, which not the way core data works, but have some requirement to delate such records in same table. Any help in predicate please