Come posso rendere programmaticamente una vista con filtri contestuali in Drupal 8?
In Drupal 7, generalmente utilizzo il seguente codice.
$view = views_get_view('test_view'); //test_view is the view machine name
$view->set_display("block"); //block is the view display name
$view->set_arguments($tid); //$tid is the argument to pass
$view->pre_execute();
$view->execute();
$content = $view->render();
Esiste un modo alternativo per raggiungere questo obiettivo in Drupal 8?