Hi,
I have the following pretty simple linq query querying a linq to entities edmx.
(from i in ent.Inspectors select i).OrderBy(s => s.Surname).Skip((page - 1) * count).Take(count).ToList();
In Sql Server Profiler I can see that the exact same select query is being sent twice.
Can someone explain why?
Cheers,
Dave