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

windows - Single EXE to Install Python Standalone Executable for Easy Distribution -

c# - Access objects in UserControl from MainWindow in WPF -

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