C# 클래스 Contrive.Common.Data.AddDbParameterExtensions

파일 보기 프로젝트 열기: alanstevens/Contrive

공개 메소드들

메소드 설명
AddOutputParameter ( this command, string name, DbType paramType, int size ) : IDbCommand
AddParameter ( this command, string name, DbType type ) : IDbCommand
AddParameter ( this command, string name, DbType type, object value ) : IDbCommand
AddParameter ( this command, string name, DbType type, object value, int size ) : IDbCommand
AddParameter ( this command, string name, DbType type, object value, int size, ParameterDirection direction ) : IDbCommand

비공개 메소드들

메소드 설명
NewParameter ( this command, string name, DbType type, ParameterDirection direction, object value = null, int size, byte precision = (byte)0, byte scale = (byte)0 ) : IDataParameter

메소드 상세

AddOutputParameter() 공개 정적인 메소드

public static AddOutputParameter ( this command, string name, DbType paramType, int size ) : IDbCommand
command this
name string
paramType DbType
size int
리턴 IDbCommand

AddParameter() 공개 정적인 메소드

public static AddParameter ( this command, string name, DbType type ) : IDbCommand
command this
name string
type DbType
리턴 IDbCommand

AddParameter() 공개 정적인 메소드

public static AddParameter ( this command, string name, DbType type, object value ) : IDbCommand
command this
name string
type DbType
value object
리턴 IDbCommand

AddParameter() 공개 정적인 메소드

public static AddParameter ( this command, string name, DbType type, object value, int size ) : IDbCommand
command this
name string
type DbType
value object
size int
리턴 IDbCommand

AddParameter() 공개 정적인 메소드

public static AddParameter ( this command, string name, DbType type, object value, int size, ParameterDirection direction ) : IDbCommand
command this
name string
type DbType
value object
size int
direction ParameterDirection
리턴 IDbCommand