I do not understand the syntax you presented.
What I have is an EntityCollection named Contacts, and an Entity Contact and a Repeater named Repeater1. In VB.Net would I code this as:
Dim _Contact as Contact
Dom _Contacts as contacts
_contacts.GetMulti(nothing)
...
...
...
<asp:Repeater ID="Repeater1" runat="server">
<ItemTemplate>
<tr>
<td> <%=((Contact)Dataitem.LastName)%></td>
</tr>
</ItemTemplate>
</asp:Repeater>
...
...
...
</body>
Thanks
Glenn