ServerClientSessionBeginUpdateWithEvents Method  | 
 
            Starts a transaction that may be creating new persistent data and/or updating persistent data and gets a list of created/updated objects as subscribed to by this session
            
 
    Namespace: 
   VelocityDb.Session
    Assembly:
   VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntaxpublic List<Oid> BeginUpdateWithEvents(
	bool doRecoveryCheck = true
)
Public Function BeginUpdateWithEvents ( 
	Optional doRecoveryCheck As Boolean = true
) As List(Of Oid)
public:
List<Oid>^ BeginUpdateWithEvents(
	bool doRecoveryCheck = true
)
member BeginUpdateWithEvents : 
        ?doRecoveryCheck : bool 
(* Defaults:
        let _doRecoveryCheck = defaultArg doRecoveryCheck true
*)
-> List<Oid> 
Parameters
- doRecoveryCheck (Optional)
 - Type: SystemBoolean
If true a recovery check is done, otherwise recovery check is bypassed. 
Return Value
Type: 
ListOidlist of object Oid of objects updated by other sessions
See Also