c# - What is the basic difference between System.Collections.Generic.List and System.Linq.IQueryable -


this question has answer here:

what basic difference between system.linq.iqueryable , system.collections.generic.list 1 faster , when use what?

an iqueryable<t> interface abstracts type of query. query can executed (by iterating on query), have use tolist<t> convert (the results of) query list.

a list<t> list can contain objects. ready retrieved when need them.


Comments

Popular posts from this blog

javascript - How to name a jQuery function to make a browser's back button work? -

python - Django-easy-pdf: xhtml2pdf reporting reportlab 2.2+ is required, but 3.0 installed -

collision detection - C++ library for mesh to mesh intersection: what is available? -