No such thing as eager loading with pagination it's automatic you are only retrieving so many at a time and you probably need to learn how to use the Skip and take. As it's not automatic you will have to work up skip and take variables.
That is if later you plan on paginating more than just the 10 initial you retrieve.
Eager loading just means getting all that you requested at the time no different than running two queries. I just don't get into the fancy terminology for loading data if you requested all of it at the time.
If paginating 10 then you are retrieving 10 at a time no different if you were using a single page app so why call it eagar loading.