It looks to me like System.Data.Extensions.dll is already in the Bin folder.
However, I looked up the ToArray(IEnumerable<T>) extension method and it looks to me like it's in System.Query.dll in the System.Query namespace. This means all you should need is a using statement for System.Query. Your StaticMethods file should already
have this in it. If you try to use this method in you StaticMethods file, does it compile and work correctly?
Polita Paulus
This posting is provided "AS IS" with no warranties, and confers no rights.
phuff
Contributor
2700 Points
547 Posts
Microsoft
Re: BLINQ and Atlas
Aug 23, 2006 10:43 PM|LINK
It looks to me like System.Data.Extensions.dll is already in the Bin folder.
However, I looked up the ToArray(IEnumerable<T>) extension method and it looks to me like it's in System.Query.dll in the System.Query namespace. This means all you should need is a using statement for System.Query. Your StaticMethods file should already have this in it. If you try to use this method in you StaticMethods file, does it compile and work correctly?
This posting is provided "AS IS" with no warranties, and confers no rights.