Skip to content

Instantly share code, notes, and snippets.

@xgeek-net
Last active March 17, 2017 06:53
Show Gist options
  • Save xgeek-net/9acb95eecd00f99e84c3a694bf53d3d1 to your computer and use it in GitHub Desktop.
Save xgeek-net/9acb95eecd00f99e84c3a694bf53d3d1 to your computer and use it in GitHub Desktop.
Map keys to List
Map<Id, Account> accountMap = new Map<Id, Account>([SELECT Id, Name FROM Account LIMIT 10]);
List<Id> idList = new List<Id>();
for(Account acc : accountMap.keySet()){
idList.add(acc.Id);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment