Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have used below code to update Account table ..

When i run the project it does not give any error message...but my account table does not update..

Let me know did i done any thing wrong !

dcBusinessAccountingContext.SaveAccount(null, 166, "SBI", 5000, null, 6000, null, "SBI", 2, null, 6000, DateTime.Now, 53, null, null, null, 52, 2, null, _ApplicationOwner, _CreatedBy, DateTime.Now, _CreatedBy, DateTime.Now).Completed += new EventHandler(SaveAccountMOAData_Completed);

                SubmitOperation so = dcBusinessAccountingContext.SubmitChanges();

               so.Completed += (s, args) =>
               {
                   // Error?
                   if (so.HasError)
                   {
                       // Message
                       MessageBox.Show(string.Format("The following error has occurred:\n\n{0}", so.Error.Message));

                       // Set
                       so.MarkErrorAsHandled();
                   }
                   else
                   {
                       MessageBox.Show("Imported sucessfully.");
                   }
               };

...........................................................................

void SaveAccountMOAData_Completed(Object Sender, EventArgs e) {

        MessageBox.Show("Saving Accounts Data");

    }
share|improve this question
I am not sure exactly what the problem here is, but you can try tracking them down with Fiddler to see the request and response and see what is happening. Run sql profiler and get the sql statement that is trying to do either insert/update and run it directly in sql manager and see if there is any sql error. The last option is to put a break point in the domain service on save and see if there is any error or added o'OnError' method to the domain service and see if it get called. Hope any one of these help you track the problem. – Nair Feb 4 at 14:24

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.