What is the difference between IQueryable and IEnumerable?

前端 未结 12 1605
梦毁少年i
梦毁少年i 2020-11-22 06:41

What is the difference between IQueryable and IEnumerable?


See also What\'s the difference between IQueryable and I

12条回答
  •  囚心锁ツ
    2020-11-22 07:07

    IQueryable is faster than IEnumerable if we are dealing with huge amounts of data from database because,IQueryable gets only required data from database where as IEnumerable gets all the data regardless of the necessity from the database

提交回复
热议问题