Exemple #1
0
 /// <summary>
 /// Sets the time for data in a column to expire (TTL) for INSERT and UPDATE commands.
 /// </summary>
 /// <param name="seconds">Amount of seconds.</param>
 /// <returns>This instance.</returns>
 public new CqlConditionalCommand <TEntity> SetTTL(int seconds)
 {
     _origin.SetTTL(seconds);
     return(this);
 }