public ISqlCommandWrapper CreateQuery(string sql) { return(SqlCommandWrapper.Create(_connectionString) .AsQuery(sql)); }
public ISqlCommandWrapper CreateStoredProcedure(string sql) { return(SqlCommandWrapper.Create(_connectionString) .AsStoredProcedure(sql)); }