14
IEnumerable लौटना <T> बनाम IQueryable <T>
रिटर्निंग IQueryable<T>बनाम के बीच अंतर क्या है IEnumerable<T>, जब एक को दूसरे पर प्राथमिकता दी जानी चाहिए? IQueryable<Customer> custs = from c in db.Customers where c.City == "<City>" select c; IEnumerable<Customer> custs = from c in db.Customers where c.City == "<City>" select c;