How can I use dynamic LINQ in Visual Studio 2008?
I'm trying to use
using System.linq.Dynamic
but there is no intellisense. How can I use it?
How can I use dynamic LINQ in Visual Studio 2008?
I'm trying to use
using System.linq.Dynamic
but there is no intellisense. How can I use it?
Well, I'll first say that dynamic LINQ is usually overkill, but sometimes useful. But you should just be able to reference the dll and away you go. If no intellisense is appearing, but it compiles, then check where (physically) the dynamic linq dll is located. Ensure the "foo.dll.xml" file is located next to "foo.dll" (where "foo" is the assembly - perhaps System.Linq.Dynamic
?). This is key for intellisense when using assembly references.
You should find the answer in here:
http://stackoverflow.com/questions/1292482/how-do-i-build-up-linq-dynamically