Hi,
I have this function that returns a DataTable :
Public Shared Function GetDataTable(ByVal PageSize As Integer, ByVal CurrentPagea As Integer) As DataTable
Dim dtData As New DataTable
dtData = da_Book_Content.GetDataContent()
'TODO : how to do data paging for dtData with Linq
Return dtData
End Function
On a page, I have DataList to display the data. It works but I want to implement the paging feature. How do I do that with so I be able to use Linq lazy loading feature ?
Thanks.