get link atribute from express

Permalink
I'm trying to get a link that I've created on express with a page selector.

entity: local (plural: locais)
atribute: link_local

<?php if (count($locais)) {
foreach($locais as $local) { ?>
<tr>
<td><?=$local->getNomeLocal()?></td>
<td><?=$local->getMoradaLocal()?></td>
<td><?=$local->getLinkLocal()?></td>
</tr>
<?php } ?>

the link does not appear, bur the rest of the informations does.

can I get some help?