Last active
March 17, 2017 06:53
-
-
Save xgeek-net/e24f70ab0f6e5e7a5d75e332b5a1f025 to your computer and use it in GitHub Desktop.
Map keys to List
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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