Hi,
I'm trying to add a where clause to my query:
List<stringtype s = new List<string>();
types.Add( "A" );
types.Add( "B" );
query = query.Where( c =types.Contains ( c.Type ) );
When executed, I get the following exception:
System.NotSuppo rtedException : Queries with local collections are not
supported.
I found a bug filling on Connect that indicates this was fixed for
RTM.. what's going on?
Thanks
Andy
I'm trying to add a where clause to my query:
List<stringtype s = new List<string>();
types.Add( "A" );
types.Add( "B" );
query = query.Where( c =types.Contains ( c.Type ) );
When executed, I get the following exception:
System.NotSuppo rtedException : Queries with local collections are not
supported.
I found a bug filling on Connect that indicates this was fixed for
RTM.. what's going on?
Thanks
Andy
Comment