How to make concurrent multiple unrelated data calls
We usually make multiple data calls like in an app’s OnStart. Do these have to run one after another or can they run concurrently?
We usually make multiple data calls like in an app’s OnStart. Do these have to run one after another or can they run concurrently?
A lot of times you would want to lookup multiple records from a table. Would you do that one at a time or is there a better way to do it?
Patch is used to create new records or update existing records. Learn how to optimize patch when updating an existing record!
Learn how to optimize fetching of multiple columns using Lookup! Should you fetch each column separately or can you fetch all at once?
Learn how to optimize the Lookup function by not using the dot operator! Sounds counter intuitive but the difference is huge!