Guest User

Untitled

a guest
Jan 19th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. List<Contact> clist = [SELECT Id, lastname, email FROM Contact LIMIT 50000];
  2. List<String> keylist = new List<String>();
  3.  
  4. for(Contact c : clist) {
  5.  
  6. // Right here SFSE, brain fart right here...
  7. string key = c.lastname + c.email;
  8.  
  9. keylist.add(key);
  10. }
  11.  
  12. System.debug(keylist.size());
Add Comment
Please, Sign In to add comment