Hello,
we use the C# Driver Mapper component to insert or update records. Is there a way to set a ttl by the mapper component or is this onliy with native cql possible?
for examle:
await _cassandraManager.Mapper().UpdateAsync(somerecord); // configure somehow ttl on updated record
or do i have to
_cassandraManager.Mapper().UpdateAsync<SomeRecord>("
USING TTL 259200 SET name = ? WHERE id = ?", someNewName, userId);