Skip to content

Conversation

wimvelzeboer
Copy link
Contributor

@wimvelzeboer wimvelzeboer commented Apr 6, 2022

Often we retrieve data from records in maps, these domain methods will help with avoiding iterations.

Account accounts = Accounts.newInstance(records);
Map<Id, String> accountNameById = accounts.getStringFieldByIdField(Account.AccountName, Account.Id);

instead of:

Account accounts = Accounts.newInstance(records);
Map<Id, String> accountNameById = new Map<Id, String>();
for (Account record : (List<Account) accounts.getRecords())
{
  accountNameById.put(record.Id, record.Name);
}

This change is Reviewable

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant