C# 클래스 Griffin.Data.CommandExtensions

Extensions for IDbCommand
파일 보기 프로젝트 열기: jgauffin/Griffin.Framework 1 사용 예제들

공개 메소드들

메소드 설명
AddParameter ( this command, string name, object value ) : IDataParameter

Add a parameter to a command

CreateDataException ( this cmd, Exception inner ) : DataException

Creates a DataException using the command text and sql parameters.

메소드 상세

AddParameter() 공개 정적인 메소드

Add a parameter to a command
public static AddParameter ( this command, string name, object value ) : IDataParameter
command this Command to add parameter to
name string Name of the parameter
value object Value (will be changed to DBNull.Value automatically if it's null).
리턴 IDataParameter

CreateDataException() 공개 정적인 메소드

Creates a DataException using the command text and sql parameters.
public static CreateDataException ( this cmd, Exception inner ) : DataException
cmd this Command to build an exception from.
inner System.Exception Inner exception.
리턴 System.Data.DataException