Question
How to load drupal 8 entity dynamicly by entity type and entity id ?
Using entity_load function.
Example:$entity = entity_load($entity_type, $id);
Using Entity Manager
Example:$entity = \Drupal::entityTypeManager()->getStorage($entity_type)->load($id);
Add new comment