vote up 2 vote down star
1

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

flag
VB.NET, C#, what? – AnthonyWJones Jan 15 at 9:14
Perhaps a more rounded description of your T-SQL (like an actual chunk of T-SQL code) would also make this question better – AnthonyWJones Jan 15 at 9:15
Explaining which is the task you are trying to accomplish, might gave you better responses. – Aleris Jan 15 at 9:16

2 Answers

vote up 2 vote down

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/

link|flag
vote up 3 vote down

LINQ has an extension method called Contains which allows for this functionality. This can be seen in the following example:

NorthwindDataContext dc = new NorthwindDataContext();
dc.Log = Console.Out;
var query =
    from c in dc.Customers
    where !(from o in dc.Orders
            select o.CustomerID)
           .Contains(c.CustomerID)
    select c;
foreach (var c in query) Console.WriteLine( c );

Note the negation on the where clause!

This example was from the website here.

link|flag

Your Answer

Get an OpenID
or

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