I came accross with this link http://www.dbtutorials.com/display/linq-to-sql-paging-cs.aspx
which has e.g. of efficient server side paging in LINQ but i want to do same thing with Entity Framework but with Complex type is it possible ?
I came accross with this link http://www.dbtutorials.com/display/linq-to-sql-paging-cs.aspx
which has e.g. of efficient server side paging in LINQ but i want to do same thing with Entity Framework but with Complex type is it possible ?
Skip
是的,您仍然可以使用Take
LINQ to Entities 提供程序,这些将在服务器上执行。您还应该研究PagedList,它使您的事情变得更容易。