The following structure defines the SQL query syntax in LiteDB. Keyworks and function names are case-insensitive. [ EXPLAIN ] SELECT [, ] [ …
The following structure defines the SQL insert syntax in LiteDB. Keyworks are case-insensitive. INSERT INTO {collection}[: {autoIdType}] …
The following structure defines the SQL update syntax in LiteDB. Keyworks and function names are case-insensitive. UPDATE SET = [, = ] | …
The following structure defines the SQL delete syntax in LiteDB. Keyworks and function names are case-insensitive. DELETE WHERE …
Collection Renaming RENAME COLLECTION TO collection is the current name of the collection. newName is the new name of the collection. …
Aggregate Functions COUNT(array) - Returns the number of elements in array MIN(array) - Returns the lowest value in array MAX(array) - …
LiteDatabase Constuctors Signature Description LiteDatabase(string connectionString, BsonMapper mapper = null) Creates a new instance …