LINQ TO SQL - Skip/Take not working as expected.
I've got an IQueryable repository (admittedly this is the first time I've tried this) and I can't seem to get it to pull the correct data using Skip(1).Take(1) Here's the repository Public Function GetActivity() As IQueryable(Of ActivityLog) Implements IActivityLogRepository.GetActivity Dim activity = (From a In dc.Activity...