BlogEngine.Core.Providers.DbConnectionHelper.CreateCommand C# (CSharp) Method

CreateCommand() public method

Uses this ConnectionHelper instance's connection to create and return a new DbCommand instance.
public CreateCommand ( ) : DbCommand
return System.Data.Common.DbCommand
        public DbCommand CreateCommand()
        {
            this.CheckDisposed();
            return this.Connection.CreateCommand();
        }