I have the following linq-to-entities query with 2 joined tables that I would like to add pagination to:
IQueryable data = from inventory
You would simply use your Skip(itemsInPage * pageNo).Take(itemsInPage) to do paging.
Skip(itemsInPage * pageNo).Take(itemsInPage)