/// Dapper Select without type
/// https://github.com/StackExchange/Dapper
using (var conn = new SqlConnection (connStr)) {
// Return IEnumerable<dynamic>
var list = conn.Query (
"SELECT * FROM Products WHERE CategoryID = @id", new { id = 2 });
foreach (var item in list) {
$"{item.ProductID} {item.ProductName}".Dump();
}
}