Skip to content

Instantly share code, notes, and snippets.

@xgeek-net
Last active March 17, 2017 06:53
Show Gist options
  • Save xgeek-net/e24f70ab0f6e5e7a5d75e332b5a1f025 to your computer and use it in GitHub Desktop.
Save xgeek-net/e24f70ab0f6e5e7a5d75e332b5a1f025 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>(accountMap.keySet());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment