I want to override the SubmitChanges() method for my model.
Whern I try to override I get a compiler error:
cannot override inherited member 'System.Data.Linq.DataContext.SubmitChanges()' because it is not marked virtual, abstract, or override
Is there anyway I can override this? Or do I have to create another method that runs my code and then runs the base SubmitChanges()?
Thanks