I have a Model User with an attribute, let's call it keyValue.
I want to select the userId of all Users who has at least other user with the same keyValue. In other words, I want to select all Users with duplicated keyValue in the DB.
I think that in SQL it would be something like this:
SELECT userID FROM users WHERE count(keyValue) > 1;
SharedCoreDatasample project, in a method that removes duplicate entries based on a specific key. – Tom Harrington Jan 19 at 22:37