Reputation: 3434
Currently I'm using Visual Studio 2008 (SP1) and developing some code that uses nested LINQ statements. How ever with every level of nesting the intellisense performance drops considerably to the point where it become unusable.
Has anyone else experienced something similar or found a solution to this problem?
Cheers for any help Tony
I don't have the exact code with me but its something along the lines of:
var a = list1.Sum(x => x.list2.Sum(y => y.list3.Sum()))
Any deeper nesting and it usually throws a wobbly.
I haven't turned off reshaprer completely but I will try that in the morning.
Thanks for the help so far
Upvotes: 2
Views: 335
Reputation: 60041
Never seen it. It's probably related to Visual Studio plug-ins like Resharper or CodeRush; we've seen those plug-ins degrade IDE performance.
Upvotes: 1
Reputation: 18832
Are you using CodeRush from Devepress? Try turning it off or this solution (despite being for a different problem) seemed to solve it for me.
Upvotes: 2