In my project, all BO come from a BO library, in which they are all set with UpdateUsingStoredProcedure as True.
When I set UpdateUsingStoredProcedure as False on a BO on a form, this setting seems to be overridden by the setting of the BO in the BO library: saving by formSave raises an error (unable to find the update SP on the database).
I need to dynamically set it to False in the overriding function Save, before calling MyBase.Save
Is it anything I don't understand on subclassing in .Net?