| DataScopeCommitChanges Method (ITransactionController) | 
 
            Commits the changes tracked by this scope. Use this method to commit the changes using a transaction controller directly.
            It uses the passed in controller (Adapter: an IDataAccessAdapter instance will do, 
            SelfServicing: an ITransaction instance will do) to commit the unit of work. If the controller has already a transaction in progress,
            that transaction is used to perform the work, otherwise a new transaction is started.
            To commit the work using external code, e.g. another tier or a service, please use the CommitChanges overload which accepts a
            Func instead.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntaxpublic bool CommitChanges(
	ITransactionController controller
)
Public Function CommitChanges ( 
	controller As ITransactionController
) As Boolean
Parameters
- controller
 - Type: SD.LLBLGen.Pro.ORMSupportClassesITransactionController
The controller. 
Return Value
Type: 
Booleantrue, if 1 or more actions were performed by the unit of work, false otherwise
RemarksThe unit of work uses as workorder: Inserts, Updates, UpdatesPerformedDirectly, DeletesPerformedDirectly,
            Deletes.
See Also