System.Data.Common.DbCommand.BeginTransaction(System.Data.IsolationLevel)

Here are the examples of the csharp api class System.Data.Common.DbCommand.BeginTransaction(System.Data.IsolationLevel) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: Sequelocity.NET
Source File: SequelocityDotNet.cs
public static DbTransaction BeginTransaction( this DatabaseCommand databaseCommand, IsolationLevel isolationLevel )
        {
            DbTransaction transaction = databaseCommand.DbCommand.BeginTransaction( isolationLevel );

            return transaction;
        }