I am fetching data from server in 2 steps .
First is fetch randomly 25 records from my table and show that records to user , now i have added a button . when user click on that button i have to show next 25 records from database but i need to sure that these records doesn't contains anyone which is already been displayed . How to do this in c#
Here is the code by which i get first 25 records
var records = context.couponservice.Query().Take(25).ToList();
thanks in advance .
Skip()andTake()solutions below, I'd strongly advise also adding anOrderBy()