- resharper intellisense problem with extension methods
- IQueryable<Customer> Customers{...}
- public static IQueryable<Customer> WithID(this IQueryable<Customer> customers, int ID){...}
- var c = repo.Customers().WithID(5).Single();
- var c = repo.Customers().Wi
- var c = CustomerExtensions.WithID(repo.Customers())