Adf.Base.Data.SqlProvider.GetTransaction C# (CSharp) Method

GetTransaction() public method

Get a transaction object from the transactions list. If none present a null value will be returned.
public GetTransaction ( DataSources source ) : IDbTransaction
source Adf.Core.Data.DataSources The used to get the data source name.
return IDbTransaction
        public virtual IDbTransaction GetTransaction(DataSources source)
        {
            return StateManager.Personal[source, "Transaction"] as IDbTransaction;
        }