vote up 1 vote down star

Just a quick one really, I'm just looking for a bit of clarification.

I'm looking to update multiple tables from one "Create" action, before I try it, I was just wondering if it's possible to simply just do the following:

db.hdCalls.InsertOnSubmit(a)
db.hdCustomers.InsertOnSubmit(b)
db.hdAssign.InsertOnSubmit(c)
db.SubmitChanges()

Or is it slightly more complicated than that?

flag

1  
yep, it's that simple. – Russell Steen Oct 21 at 15:57

2 Answers

vote up 2 vote down check

Yes, SubmitChanges will then call 3 inserts.

link|flag
vote up 0 vote down

A small question even if this post is old.

What if one of the inserts fails, will all the other inserts rollback? Because if one fail, I sure does not want any of the other inserts to commit.

How is this handled?

link|flag
It's my understanding that if any of those fail under db.SubmitChanges() the whole insert fails, not just one. – Liam Jan 19 at 9:22
Thank you, that was all I wanted to know :D – Martin Jan 20 at 15:49

Your Answer

Get an OpenID
or
never shown

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