Lets consider the following linq statement.
var ctx = new MoviesContext();
var movies = ctx.Movies.AsPagination(pagenum??1, 10);
I have following questions in regards to executing this against Oracle in Entity Framework
For this statement against Oracle, what is the best way for me to see how does the above statement get translated into actual database query?
How do I know if records are being filtered at the database level and I am only going to get the 10 records back in the application memory?
Please let me know.
Thanks