Microsoft Power Platform Developer — Question 40
You are creating a .NET application to load a large volume of data into a Dataverse table with one default column value. A synchronous plug-in already sets the same default column value for new rows in the table.
To speed up the process, you must disable the plug-in during the data load. The data load must run during business hours. The load must not affect rows users may be creating.
You need to perform the operations.
What are two possible ways to achieve this goal? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.
Answer options
- A. Send the BypassCustomPluginExecution as an optional parameter with the create request.
- B. Send the SuppressCallbackRegistrationExpanderJob as an optional parameter with the request.
- C. Disable the plug-in step prior to starting the data load.
- D. Set the BypassPluginExecution property on the CrmServiceClient.
Correct answer: A, D
Explanation
Option A is correct because sending the BypassCustomPluginExecution parameter allows you to bypass the plug-in for the data load. Option D is also valid as setting the BypassPluginExecution property on the CrmServiceClient achieves the same goal of bypassing the plug-in. Options B and C are incorrect; B does not relate to bypassing the plug-in and C would disrupt the system's functionality during the load.