コード例 #1
0
 private EnumerableRowCollection <DataRow> Get(string commandText, SqlParamCollection param = null)
 {
     return(Rds.ExecuteTable(
                transactional: false,
                statements: Rds.DemosStatement(
                    commandText: commandText,
                    param: param ?? null))
            .AsEnumerable());
 }