C# Класс Griffin.Data.CommandExtensions

Extensions for IDbCommand
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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