Can linq to sql query using not in?
e.g., SELECT au_lname, state FROM authors WHERE state NOT IN ('CA', 'IN', 'MD')
|
2
|
Can linq to sql query using not in? e.g., SELECT au_lname, state FROM authors WHERE state NOT IN ('CA', 'IN', 'MD')
|
||
|
|
|
|
or
|
|||
|
|
|
|
Yes! Here's an example from code we already had written:
The generated SQL turns out to be:
|
||
|
|
|
|
You can do it with Contains:
|
||
|
|
|
|
here's an example:
|
||
|