Entity Framework/Linq to SQL: Skip & Take
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: Just curious as to how Skip & Take are supposed to work. I'm getting the results I want to see on the client side, but when I hook up the AnjLab SQL Profiler and look at the SQL that is being executed it looks as though it is querying for and returning the entire set of rows to the client. Is it really returning all the rows then sorting and narrowing down stuff with LINQ on the client side? I've tried doing it with both Entity Framework and Linq to SQL; both appear to have the same behavior. Not sure it makes any difference, but I'm using C