Hi, i'm using LINQ To SQL to perform an insert via db.table.InsertOnSubmit(). I'm wondering if there is a way to reproduce the T-SQL version of the 'where not exists (select etc etc) begin insert into etc etc end' as one single query? Thanks, Martin
|
1
|
|||||||
|
|
|
Nothing build in as far as I know, we would have to go about finding the row manually using where and than do the Insert. There is a possibility of race coditions in such queries. Have a look at this thread for detailed solution : http://social.msdn.microsoft.com/Forums/en-US/linqtosql/thread/b1a0eb5b-d5d3-41af-829f-bbbac47b7383/ |
||
|
|
|
|
LINQ has an extension method called Contains which allows for this functionality. This can be seen in the following example:
Note the negation on the where clause! This example was from the website here. |
||
|
|
