SchemaCreatedEventArgs::Transaction Property

Gets or sets an IDbTransaction object that contains the transaction within which the schema was created.

Namespace:  Microsoft.Synchronization.Data
Assembly:  Microsoft.Synchronization.Data (in Microsoft.Synchronization.Data.dll)

public:
property IDbTransaction^ Transaction {
	IDbTransaction^ get ();
}

Property Value

Type: System.Data::IDbTransaction
An IDbTransaction object that contains the transaction within which the schema was created.

Use the transaction exposed by this property and the connection exposed by the Connection property to access a database over the same connection and within the same transaction that Sync Framework uses.

For an example of how to access a database over the same connection and within the same transaction that Sync Framework uses, see How to: Work with Events and Program Business Logic.

Show: