I'm not sure if I am missing something out of the documentation but is there a way I can loop through the entity collection like I can with a dataset?
say this example..
Dim myDesign As New clsDesigns
Dim ds As DataSet = myDesign.GetHomePageClients()
Dim ProjectName As String
Do While i < ds.Tables(0).Rows.Count
ProjectName = ds.Tables(0).Rows(i).Item("ProjectName")
divDesign.InnerHtml += ProjectName & "<br />"
i += 1
Loop
I want to be able to do this, so I can build a dynamic <div> tag in an aspx page. Thanks for the help!