voidInsert<T>(
T poco,
boolinsertNulls,
Nullable<int> ttl,
CqlQueryOptionsqueryOptions = null
)
Parameters
poco
Type: T The POCO instance
insertNulls
Type: SystemBoolean
Determines if the query must be generated using NULL values for null POCO
members.
Use false if you don't want to consider null values for the INSERT
operation (recommended).
Use true if you want to override all the values in the table,
generating tombstones for null values.
ttl
Type: SystemNullableInt32 Time to live (in seconds) for the inserted values. If set, the inserted values are automatically removed
from the database after the specified time.