コード例 #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));
 }