0 votes
in Salesforce by
What is the Bulkification best practice?

1 Answer

0 votes
by
We must avoid using index values like Trigger.New[0] as we never know how many records we get in Trigger.New at runtime.

We need to use for each loop whether we have 1 record or many.

We must not use SOQL inside for loop.

We must not use SOSL inside for loop.

We must not use DML inside for loop.

We need to store data in collections, so our code will work for single as well as multiple records.

Related questions

0 votes
asked Sep 27, 2022 in Salesforce by SakshiSharma
0 votes
asked Nov 25, 2021 in Salesforce by DavidAnderson
...