ObjectDataSourceView.Update Method (IDictionary, IDictionary, IDictionary)
Assembly: System.Web (in system.web.dll)
public int Update ( IDictionary keys, IDictionary values, IDictionary oldValues )
public function Update ( keys : IDictionary, values : IDictionary, oldValues : IDictionary ) : int
Not applicable.
Parameters
- keys
A IDictionary of the key values used to identify the item to update. These parameters are used with the method specified by the UpdateMethod property to perform the update operation. If there are no parameters associated with the method, pass a null reference (Nothing in Visual Basic).
- values
A IDictionary of new values to apply to the data source. These parameters are used with the method specified by the UpdateMethod property to perform the update database operation. If there are no parameters associated with the method, pass a null reference (Nothing in Visual Basic).
- oldValues
A IDictionary that contains the additional non-key values used to match the item in the data source. Row values are passed to the delete method, only if the ConflictDetection property is set to the CompareAllValues field.
Return Value
The number of rows updated; otherwise, -1, if the number is not known.The default return value is -1, which means that an unknown number of rows were updated. To return a different value, set the AffectedRows property of the ObjectDataSourceStatusEventArgs object of the Updated event. The number of affected rows is typically returned by the Update method for the business object, and that value is available from the ReturnValue property of the ObjectDataSourceStatusEventArgs parameter of the Updated event.
The Update method calls the ExecuteUpdate method, passing the keys, values, and oldValues parameters.