Skip to content

IDatabase.Create method

Creates a record in the database.

public Task<DriverResponse> Create(Thing thing, object data, CancellationToken ct = default)
parameter description
thing The table name or the specific record id to create.
data The document / record data to insert.

Remarks

This function will run the following query in the database:

CREATE $thing CONTENT $data;

See Also