DataAccessAdapterCoreSaveTransaction Method  | 
  Creates a savepoint with the name savePointName in the current transaction. You can roll back to this savepoint using 
Rollback(String).
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.12.0.0 (5.12.0)
Syntaxpublic virtual void SaveTransaction(
	string savePointName
)
Public Overridable Sub SaveTransaction ( 
	savePointName As String
)
Parameters
- savePointName
 - Type: SystemString
name of savepoint. Must be unique in an active transaction 
Implements
IDataAccessAdapterSaveTransaction(String)
Exceptions| Exception | Condition | 
|---|
| InvalidOperationException | If no transaction is in progress. | 
| ArgumentException | if savePointName is empty or null | 
| NotSupportedException | if the .NET database provider doesn't support transaction saving or when COM+ is used. | 
See Also