I am using LINQ to SQL. Is the following code proper if I want to notify the sender that the database was updated successfully or is there a better way?

           try
           {
               dc.ModelA.InsertOnSubmit(modela);
               dc.SubmitChanges();
               return true;
           }

           catch
           {
               return false;
           }
link|improve this question

68% accept rate
Don't you mean "a successful Linq to Sql Insert"? – Ralph Lavelle Dec 1 '09 at 0:25
feedback

2 Answers

up vote 3 down vote accepted

The better way is to not catch the exception and let it propagate to the caller. By catching the exception you are removing all information about why the insert failed, making it very hard for anyone to debug and fix the problem. So you just need this:

dc.ModelA.InsertOnSubmit(modela);
dc.SubmitChanges();
link|improve this answer
feedback

Cleaner approach would be to wrap it in TransactionScope:

using (var scope = new TransactionScope())
{
   dc.ModelA.InsertOnSubmit(modela);
   dc.SubmitChanges();
   scope.Complete();
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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