-
-
Save eddywebs/52080a1535f8014bae035dbd42cf9008 to your computer and use it in GitHub Desktop.
Thou shalt not put queries in loops (good example)
This file contains 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
List<Account> accList = new List<Account>( | |
[Select | |
Id | |
,Name | |
,(Select | |
From | |
Contacts | |
) | |
From Account] | |
); | |
for(Account acc : accList){ | |
Integer numWithEmail = 0; | |
for(Contact cont : acc.Contacts){ | |
if(!String.isEmpty(cont.Email)){ | |
numWithEmail++; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment