Esempio n. 1
0
 public static IEnumerable <T> Read <T>(this ClickHouseConnection conn, string commandText) where T : new()
 {
     using (ClickHouseDatabase db = conn.CreateDatabase())
     {
         return(db.Read <T>(commandText));
     }
 }