vote up 0 vote down star

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.

flag

60% accept rate

1 Answer

vote up 4 vote down check

if the DataTable is already coming from somewhere else not LINQ2SQL, then Lazy Loading doesn't come into play.

However you can use LINQ2DataSets to take advantage of the Skip() and Take() extension methods.

You need to add a reference to the assembly: System.Data.DataSetExtensions.dll then you can write your function like this:

Public Shared Function GetDataTable(ByVal PageSize As Integer, ByVal CurrentPagea As Integer) As DataTable    
    Dim dtData As New DataTable = da_Book_Content.GetDataContent()    
    Dim query = dtData.AsEnumerable().Skip(CurrentPage).Take(PageSize)    
    Return query.CopyToDataTable()
End Function
link|flag
I used this .Skip((CurrentPage - 1) * PageSize).Take(PageSize).CopyToDataTable Thank a lot. – Bayonian Apr 21 at 4:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.