I have my llBlGenProDatasource (lds) bound to a gridview and am trying to manually manage the selection of records. I have shut off LivePersistance and I cannot retrieve any data Please help. My VB code follows:
Protected Sub MyPerformGetDbCount(ByVal sender As Object, ByVal e As SD.LLBLGen.Pro.ORMSupportClasses.PerformGetDbCountEventArgs) Handles LLBLGenProDataSource1.PerformGetDbCount
e.ContainedCollection.GetDbCount(e.Filter)
End Sub
Protected Sub MyPerformSelect(ByVal sender As Object, ByVal e As SD.LLBLGen.Pro.ORMSupportClasses.PerformSelectEventArgs) Handles LLBLGenProDataSource1.PerformSelect
e.ContainedCollection.GetMulti(e.Filter)
End Sub
Thanks
Glenn