show/hide this revision's text 3 added code comments

Are you using stored procedures directly (through a SqlCommand) or through LINQ to SQL? LINQ to SQL supports using stored procs for all its database access. You might want to look at Updating our Database using Stored Procedures, part 7 of Scott Guthrie's blog post series about LINQ to SQL. You can setup the use of sprocs through the DBML designer or in code using a DataContext partial class. The idea is that you send both the new and original values (e.g. Name and OriginalName) to the sproc so it can to its concurrency checking.

If you are using the sproc directly and not through LINQ to SQL, and all you want is to get the object's original values, you can obtain them by using Table<T>.GetOriginalEntityState() like this:

Order modifiedOrder = db.Orders.First();  // using first Order as example
modifiedOrder.Name = "new name";          // modifying the Order
Order originalOrder = db.Orders.GetOriginalEntityState(modifiedOrder);
show/hide this revision's text 2 added 76 characters in body

Are you using the sproc stored procedures directly (through a SqlCommand) or through LINQ to SQL? LINQ to SQL supports using sproc stored procs for all its database access. Scott Guthrie wrote a whole series about LINQ to SQL on his blog. You might want to look at Part 7 - Updating our Database using Stored Procedures, part 7 of Scott Guthrie's blog post series about LINQ to SQL. You can setup the use of sprocs through the DBML designer or in code (using a DataContext partial class)class. The idea is that you send both the new and original values (e.g. Name and OriginalName) to the sproc so it can to its concurrency checking.

If you are using the sproc directly and not through LINQ to SQL, and all you want is to get the object's original values, you can obtain them by using Table<T>.GetOriginalEntityState() like this:

Order modifiedOrder = db.Orders.First();
modifiedOrder.Name = "new name";
Order originalOrder = db.Orders.GetOriginalEntityState(modifiedOrder);
show/hide this revision's text 1

Are you using the sproc directly or through LINQ to SQL? LINQ to SQL supports using sproc for all its database access. Scott Guthrie wrote a whole series about LINQ to SQL on his blog. You might want to look at Part 7 - Updating our Database using Stored Procedures. You can setup the use of sprocs through the DBML designer or in code (a DataContext partial class). The idea is that you send both the new and original values (e.g. Name and OriginalName) to the sproc so it can to its concurrency checking.

If you are using the sproc directly and not through LINQ to SQL, and all you want is to get the object's original values, you can obtain them by using Table<T>.GetOriginalEntityState() like this:

Order modifiedOrder = db.Orders.First();
modifiedOrder.Name = "new name";
Order originalOrder = db.Orders.GetOriginalEntityState(modifiedOrder);