There is an ExecuteReader method that returns a data reader generated by the connection: you can play it if you know that it is really SqlDataReader . In this case, dapper only processes parameters and literals.
using(var reader = (DbDataReader) conn.ExecuteReader(sql, args)) {
I am, however, more than intrigued as to what you want SqlHelper do, which the depper does not yet (but better). Genuine question: I like to improve the library. If there is a gap, let me know.
Marc gravell
source share