Catnap.DbCommandFactory.Create C# (CSharp) Method

Create() public method

public Create ( IDbCommandSpec commandSpec ) : IDbCommand
commandSpec IDbCommandSpec
return IDbCommand
        public virtual IDbCommand Create(IDbCommandSpec commandSpec)
        {
            return Create(commandSpec.Parameters, commandSpec.CommandText);
        }

Same methods

DbCommandFactory::Create ( IEnumerable parameters, string sql ) : IDbCommand