diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Field/FieldType/ConfigurableEntityReferenceFieldItemList.php b/core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Field/FieldType/ConfigurableEntityReferenceFieldItemList.php
index 5aa477a..80a0f6f 100644
--- a/core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Field/FieldType/ConfigurableEntityReferenceFieldItemList.php
+++ b/core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Field/FieldType/ConfigurableEntityReferenceFieldItemList.php
@@ -33,9 +33,13 @@ protected function getDefaultValue() {
         }
       }
       if ($uuids) {
+        $target_type = $this->getFieldDefinition()->getFieldSetting('target_type');
+        $entity_ids = \Drupal::entityQuery($target_type)
+          ->condition('uuid', $uuids, 'IN')
+          ->execute();
         $entities = \Drupal::entityManager()
-          ->getStorageController($this->getFieldDefinition()->getFieldSetting('target_type'))
-          ->loadByProperties(array('uuid' => $uuids));
+          ->getStorageController($target_type)
+          ->loadMultiple($entity_ids);
 
         foreach ($entities as $id => $entity) {
           $entity_ids[$entity->uuid()] = $id;
