Tell me the exact difference between IQueryable and IEnumerable interface ?

 Posted by Akiii on 11/8/2011 | Category: LINQ Interview questions | Views: 13684 | Points: 40
Answer:

IEnumerable<T> is applicable for in-memory data querying, and in contrast IQueryable<T> allows remote execution, like web service or database querying.


Source: MSDN | Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response