Ejemplo n.º 1
0
 public ISqlCommandWrapper CreateQuery(string sql)
 {
     return(SqlCommandWrapper.Create(_connectionString)
            .AsQuery(sql));
 }
Ejemplo n.º 2
0
 public ISqlCommandWrapper CreateStoredProcedure(string sql)
 {
     return(SqlCommandWrapper.Create(_connectionString)
            .AsStoredProcedure(sql));
 }