Skip to content

IDatabase.Select method

Selects all records in a table, or a specific record, from the database.

public Task<DriverResponse> Select(Thing thing, CancellationToken ct = default)
parameter description
thing The table name or a record id to select.

Remarks

This function will run the following query in the database:

SELECT * FROM $thing;

See Also