/
UpdateProcess Method
UpdateProcess Method
Example
The following example demonstrates altering and updating a Process retrieved from the database.
var process = Database.GetProcessById(1); process.Properties.SetSingleValue("Altered", "true"); Database.UpdateProcess(process);
Remarks
The process that is updated in the database is targeted by the Id property of the Process you pass to this method. Be aware that if you've changed the Id of the process using dynamic object manipulation, this method will not automatically update the process you returned from the database, but rather any process by the Id on the process passed.
, multiple selections available,
Related content
SaveProcessDynamic Method
SaveProcessDynamic Method
More like this
GetProcessById Method
GetProcessById Method
More like this
InsertProcess Method
InsertProcess Method
More like this
Process Class
Process Class
More like this
GetProcessDynamic Method
GetProcessDynamic Method
More like this
DeleteProcessById Method
DeleteProcessById Method
More like this