vote up 1 vote down star

I found a bug in the Contains statement in Linq (not sure if it is really in Linq or Linq to SQL) and want to know if anyone else has seen this and if there is a fix or workaround.

If the querysource you do the contains with has more than 10 items in it, it does not pass the items correctly to the SQL query. It is hard to explain what it does, an example will show it best.

If you look at the raw query, the parameters look like this:

@P0 = 'aaa'
@P1 = 'bbb'
@P2 = 'ccc'
... [@P3 through @P9]
@P10 = '111'
@P11 = '222'
... [@p12 through @P19]
@P20 = 'sss'
... [@P21 through @P99]
@P100 = 'qqq'

when the values are passed into the final query (all parameters resolved) it has resolved the parameters as if these were the values passed:

@P0 = 'aaa'
@P1 = 'bbb'
@P2 = 'ccc'
...
@P10 = 'bbb'0
@P11 = 'bbb'1
...
@P20 = 'ccc'0
...
@P100 = 'bbb'00

So it looks like the parameter resolving looks at the first digit only after the @P and resolves that, then adds on anything left at the end of the parameter name.

At least that is what the Sql Server Query Visualizer plugin to Visual Studio shows the query doing.

Really strange.

So if any one has advice please share. Thanks!

Update: I have rewrote the original linq statement to where I now use a join instead of the Contains, but would still like to know if there is a way around this issue.

flag

This would be spcifically a LINQ to SQL bug as opposed to LINQ in general – Mark Cidade Sep 12 '08 at 20:22
yeah, I'm sure you are right. Makes sense that it would not be in the linq language but in the interpreter to SQL. – Carlton Jenke Sep 12 '08 at 20:31

3 Answers

vote up 1 vote down check

The more I look at it, and after running more tests, I'm thinking the bug may be in the Sql Server Query Visualizer plugin for Visual Studio, not actually in Linq to SQL itself. So it is not nearly as bad a situation as I thought - the query will return the right results, but you can't trust what the Visualizer is showing. Not great, but better than what I thought was going on.

link|flag
vote up 0 vote down

Could you post the linq query and the database schema, so we can play with it ourselves?

link|flag
It's not quite that simple. It pulls from 2 data sources, so 2 tables, 2 repositories and class objects, then about 3 or 4 queries deep. If I can't get another answer I will try to pull it all together. – Carlton Jenke Sep 12 '08 at 21:22
vote up 0 vote down

Try actually looking at the output from your datacontext before you pass judgement.

DataContext.Log() will give you the generated SQL.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.