What is the difference between IQueryable and IEnumerable?

前端 未结 12 1635
梦毁少年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:04

    In simple words other major difference is that IEnumerable execute select query on server side, load data in-memory on client side and then filter data while IQueryable execute select query on server side with all filters.

提交回复
热议问题