LinkMove is often used for data migration. I.e. we don't need to match source against target, and simply need to transfer the data once. Using CreateOrUpdateTask for this is possible, but slow (need to select from target and attempt matching) and inconvenient (there's a need to define a comparison key that may or may not be present in the model). Let's create a task optimized for this workflow - CreateTask.
LinkMove is often used for data migration. I.e. we don't need to match source against target, and simply need to transfer the data once. Using
CreateOrUpdateTask
for this is possible, but slow (need to select from target and attempt matching) and inconvenient (there's a need to define a comparison key that may or may not be present in the model). Let's create a task optimized for this workflow -CreateTask
.