Returns a Query, on which we can perform LINQ query
- T
- Type that query performed on
Returns a Query, on which he can perform LINQ query
var movies = from Movie m in db where m.Title == "Joe" orderby m.Year descending select m; foreach (var m in movies) { ... }