Executing database queries the Entity Framework way
When using Entity Framework, we usually believe that when executing the actual Linq query will result in a call to the database. A call that will bring the results we are asking for. This is not the behavior of the Entity Framework. Entity Framework will make the actual call to...