| MapperInsertAsyncT Method (T, Boolean, CqlQueryOptions) | 
            Inserts the specified POCO in Cassandra.
            
 
Namespace: Dse.MappingAssembly: Dse (in Dse.dll) Version: 2.4.0
Syntaxpublic Task InsertAsync<T>(
	T poco,
	bool insertNulls,
	CqlQueryOptions queryOptions = 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.
            
 - queryOptions (Optional)
 - Type: Dse.MappingCqlQueryOptions
Optional query options 
Type Parameters
- T
 
Return Value
Type: 
TaskImplements
ICqlWriteAsyncClientInsertAsyncT(T, Boolean, CqlQueryOptions)
See Also