resharper intellisense problem with extension methods
so, I have a repository defined with a method like this: IQueryable<Customer> Customers{...} and elsewhere an extension method to filter the customers like so: public static IQueryable<Customer> WithID(this IQueryable<Customer> customers, int ID){...} and this woks nicely, letting me use the repository like this: var c = repo.Customers().WithID(5).Single(); but the problem is, ReSharper messes up the Auto-Completion on this big time. When I type var c = repo.Customers().Wi I get nice Intellisense showing me the WithID(...) method, but when I cursor down to it and hit TAB, instead of getting