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

On Linq to SQL's DataContext I am able to call SubmitChanges() to submit all changes.

What I want is to somehow reject all changes in the datacontext and rollback all changes (preferable without going to the database).

Is this possible?

share|improve this question

7 Answers

up vote -1 down vote accepted

In .net 3.0 use the db.GetChangeSet().Updates.Clear() for updated, db.GetChangeSet().Inserts.Clear() for new or db.GetChangeSet().Deletes.Clear() for deleted items.

In .net 3.5 and above the result of GetChangeSet() is now readonly, loop the collection in for or foreach and refresh every ChangeSet table like also macias wrote in his comment.

share|improve this answer
13  
This was the accepted answer? This doesn't work -- the Updates/Inserts/Deletes collections are read-only. And the MSDN documentation says that these collections are "computed at the time of the call" (of GetChangeSet()). msdn.microsoft.com/en-us/library/… – shaunmartin Jan 14 '10 at 0:37
Does not work for me (VS2008) -- I get exceptions "collection is read-only". But putting it into foreach loop and refreshing each table which is in ChangeSet -- works. – greenoldman Jan 25 '10 at 9:53
Yes, this is only read only, this won't work as it's coming from a GetChangeSet() get = readonly – franko_camron Dec 16 '11 at 0:20
PLEASE READ FIRST! If you dont' like the answer, please choose another one or write your comment, but PLEASE DON'T DOWNVOTE this answer. I can't delete it, because it was accepted. – Shurup Nov 28 '12 at 16:09

Why not discard the data context and simply replace it with a new instance?

share|improve this answer
7  
Because I might have objects fetched through the context, which I might want to change/use at a later time. If I discard the data context I have to fetch those objects again. This is a windows service, where the datacontext live for a long time. – Thomas Jespersen Nov 4 '08 at 8:38
Also, what if your website is read only (yes those exist) – Boris Callens Dec 3 '08 at 14:18
DataContext is meant to be a used in a unit of work approach and is thus not intended to live for a long time. see: Lifetime of a LINQ to SQL DataContext – mbx Apr 5 at 13:02

Calling Clear() on the Updates, Deletes and Inserts collection does not work.

GetOriginalEntityState() can be useful, but it only gives the IDs for foreign key relationships, not the actual entities so you're left with a detached object.

Here's an article that explains how to discard changes from the data context: http://graemehill.ca/discard-changes-in-linq-to-sql-datacontext

EDIT: Calling Refresh() will undo updates, but not deletes and inserts.

share|improve this answer

As Haacked said, just drop the data context.

You probably shouldn't keep the data context alive for a long time. They're designed to be used in a transactional manner (i.e. one data context per atomic work unit). If you keep a data context alive for a long time, you run a greater risk of generating a concurrency exception when you update a stale entity.

share|improve this answer

The Refresh will work, however you have to give the entities you want to reset.

For example

dataContext.Refresh(RefreshMode.OverwriteCurrentValues, someObject);
share|improve this answer
this will however hit the database to get the most recent values, it doens't just revert to the old cached values. – Lucas Feb 16 '09 at 18:22

You can use the GetOriginalEntityState(..) to get the original values for the objects e.g. Customers using the old cached values.

You can also iterate through the changes e.g. updates and refresh the specific objects only and not the entire tables because the performance penalty will be high.

foreach (Customer c in MyDBContext.GetChangeSet().Updates)
        {
            MyDBContext.Refresh(System.Data.Linq.RefreshMode.OverwriteCurrentValues, c);
        }

this will revert the changes using persisted data in the database.

Another solution is to dump the datacontext you use, using Dispose().

In any case it is a good practice to override the Insert and Remove methods in the collection of e.g. Customers you use and add e.g. an InsertOnSubmit() call. This will resolve your issue with pending Insertions and Deletions.

share|improve this answer

Excellent write up on here, but here is a copy of the paste of the code used.

Public Sub DiscardInsertsAndDeletes(ByVal data As DataContext)
    ' Get the changes
    Dim changes = data.GetChangeSet()

    ' Delete the insertions
    For Each insertion In changes.Inserts
        data.GetTable(insertion.GetType).DeleteOnSubmit(insertion)
    Next

    ' Insert the deletions
    For Each deletion In changes.Deletes
        data.GetTable(deletion.GetType).InsertOnSubmit(deletion)
    Next
End Sub

Public Sub DiscardUpdates(ByVal data As DataContext)
    ' Get the changes
    Dim changes = data.GetChangeSet()

    ' Refresh the tables with updates
    Dim updatedTables As New List(Of ITable)
    For Each update In changes.Updates
        Dim tbl = data.GetTable(update.GetType)
        ' Make sure not to refresh the same table twice
        If updatedTables.Contains(tbl) Then
            Continue For
        Else
            updatedTables.Add(tbl)
            data.Refresh(RefreshMode.OverwriteCurrentValues, tbl)
        End If
    Next
End Sub
share|improve this answer

Your Answer

 
discard

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

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