Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@pcon
Created July 10, 2014 22:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pcon/b9162450b4e899de0b68 to your computer and use it in GitHub Desktop.
Save pcon/b9162450b4e899de0b68 to your computer and use it in GitHub Desktop.
Map<DateTime, User> userMap = new Map<DateTime, User>();
for (User u: [select LastLoginDate from User where Id in:userIds]) {
userMap.put(u.LastLoginDate, u);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment