예제 #1
0
 public ISqlCommandWrapper CreateQuery(string sql)
 {
     return(SqlCommandWrapper.Create(_connectionString)
            .AsQuery(sql));
 }
예제 #2
0
 public ISqlCommandWrapper CreateStoredProcedure(string sql)
 {
     return(SqlCommandWrapper.Create(_connectionString)
            .AsStoredProcedure(sql));
 }