public void Append(CqlCommand cqlCommand)
 {
     if (cqlCommand.GetTable().GetTableType() == TableType.Counter)
     {
         _batchType = "COUNTER ";
     }
     _batchScript.AppendLine(cqlCommand.GetCql());
 }
Exemple #2
0
 protected internal override string GetCql(out object[] values)
 {
     return(_origin.GetCql(out values));
 }
 public void Append(CqlCommand cqlCommand)
 {
     if (cqlCommand.GetTable().GetTableType() == TableType.Counter)
         _batchType = "COUNTER ";
     _batchScript.AppendLine(cqlCommand.GetCql());
 }