I am using Entity Framework now and using a stored procedure to populate my entity.
Where there is no problem with populating my entity, but when i trying to bind the result to a gridview control with "Enable Paging" set to true, it gives an error saying
"The data source does not support server-side data paging."
I am using stored procedure because one of the table column is FullTextIndexed, and there is a requirement to be able to search on that field.
Can anyone tell me how the paging would work in this situation?