C# Class Simple.Data.RawSql.SimpleTransactionExtensions

Mostrar archivo Open project: jasondentler/Simple.Data.RawSql

Public Methods

Method Description
Execute ( this db, string sql ) : int
Execute ( this db, string sql, object>.IDictionary parameters ) : int
Execute ( this db, string sql, object parameters ) : int
ToResultSets ( this db, string sql ) : IEnumerable>
ToResultSets ( this db, string sql, object>.IDictionary parameters ) : IEnumerable>
ToResultSets ( this db, string sql, object parameters ) : IEnumerable>
ToRow ( this db, string sql ) : dynamic
ToRow ( this db, string sql, object>.IDictionary parameters ) : dynamic
ToRow ( this db, string sql, object parameters ) : dynamic
ToRows ( this db, string sql ) : IEnumerable
ToRows ( this db, string sql, object>.IDictionary parameters ) : IEnumerable
ToRows ( this db, string sql, object parameters ) : dynamic
ToScalar ( this db, string sql ) : object
ToScalar ( this db, string sql, object>.IDictionary parameters ) : object
ToScalar ( this db, string sql, object parameters ) : object

Private Methods

Method Description
GetAdoAdapter ( this db ) : Simple.Data.Ado.AdoAdapter

Method Details

Execute() public static method

public static Execute ( this db, string sql ) : int
db this
sql string
return int

Execute() public static method

public static Execute ( this db, string sql, object>.IDictionary parameters ) : int
db this
sql string
parameters object>.IDictionary
return int

Execute() public static method

public static Execute ( this db, string sql, object parameters ) : int
db this
sql string
parameters object
return int

ToResultSets() public static method

public static ToResultSets ( this db, string sql ) : IEnumerable>
db this
sql string
return IEnumerable>

ToResultSets() public static method

public static ToResultSets ( this db, string sql, object>.IDictionary parameters ) : IEnumerable>
db this
sql string
parameters object>.IDictionary
return IEnumerable>

ToResultSets() public static method

public static ToResultSets ( this db, string sql, object parameters ) : IEnumerable>
db this
sql string
parameters object
return IEnumerable>

ToRow() public static method

public static ToRow ( this db, string sql ) : dynamic
db this
sql string
return dynamic

ToRow() public static method

public static ToRow ( this db, string sql, object>.IDictionary parameters ) : dynamic
db this
sql string
parameters object>.IDictionary
return dynamic

ToRow() public static method

public static ToRow ( this db, string sql, object parameters ) : dynamic
db this
sql string
parameters object
return dynamic

ToRows() public static method

public static ToRows ( this db, string sql ) : IEnumerable
db this
sql string
return IEnumerable

ToRows() public static method

public static ToRows ( this db, string sql, object>.IDictionary parameters ) : IEnumerable
db this
sql string
parameters object>.IDictionary
return IEnumerable

ToRows() public static method

public static ToRows ( this db, string sql, object parameters ) : dynamic
db this
sql string
parameters object
return dynamic

ToScalar() public static method

public static ToScalar ( this db, string sql ) : object
db this
sql string
return object

ToScalar() public static method

public static ToScalar ( this db, string sql, object>.IDictionary parameters ) : object
db this
sql string
parameters object>.IDictionary
return object

ToScalar() public static method

public static ToScalar ( this db, string sql, object parameters ) : object
db this
sql string
parameters object
return object