Beispiel #1
0
 public int Delete <T>(string where)
 {
     using (ClickHouseConnection conn = new ClickHouseConnection(ConnectionSettings))
     {
         conn.Open();
         return(conn.Delete(Schema.GetTable <T>().Name, where : where));
     }
 }