IENUMERABLE vs IQUERYABLE
S.No | Particulars | IENUMERABLE | IQUERYABLE |
1 | Namespace | System.Collections | System.Linq |
2 | Suitable for | LINQ to Object and LINQ to XML. | LINQ to SQL. |
3 | custom query | doesn’t supports. | supports custom query using CreateQuery and Execute methods. |
4 | lazy loading | doesn’t supports. | supports. |