I have a custom entity and am using the entity api module. I am extending EntityDefaultMetadataController. In public function entityPropertyInfo(), I define a property for a single custom entity as well as a list of custom entities. When displaying/viewing the single custom entity on a page or in a view, it is linkable/linked. When displaying a list of custom entities, it is linkable in views but displayed as simple text on a page. How can I make the list of entities that are displayed on a page linked to their corresponding entities?

  // This code works as desired for defining single custom entity property:

  $info['properties’][‘my_single_entity'] = array(
      'label' => t(‘My Single Entity'),  
      'type' => ‘my_entity',
      'computed' => TRUE,
      'getter callback' => ‘returns a single wrapped entity, // Also works if I just return the entity id
   ); 
  // This code works as desired for views but not page display when defining a list of custom entities property:

  $info['properties’][‘my_list_of_custom_entities'] = array(
      'label' => t(‘My List of Custom Entities’),  
      'type' => 'list<my_entity>’,
      'computed' => TRUE,
      'getter callback' => 'returns an numerically indexed array of wrapped entities, // Tried with just a numerically indexed array of ids too
      'entity views field' => TRUE,
    );