[Solved] C# Enumerable over a type gives different options (Finding more options in a function) [closed]

You have a using System.Linq in the file where you have the extra options. This using brings in several extension methods that help with LINQ (see details on extensions methods here) 0 solved C# Enumerable over a type gives different options (Finding more options in a function) [closed]

[Solved] IEnumreable and IQueryable [duplicate]

When querying a database, I prefer using a IQueryable because the request is sent when data are needed. I mean this var users = (from user in db.Users select user ).AsQueryable(); //it doesn’t load data yet until you write users.ToList(); or users.Count(); solved IEnumreable and IQueryable [duplicate]