"Men are disturbed, not by the things that happen, but by their opinion of the things that happen."
- Epictetus
CodeThinked has an extension method for applying Skip() and Take() to the same query:
public IQueryable<T> SkipAndTake<T> (this IQueryable<T> query, int skip, int take) { return query.Skip(skip).Take(take); }
Be the first to rate this post
January 6. 2009 21:13