Fork me on GitHub
Overview

Overview

LiteDB v5 - Structed Query Language

SELECT

The following structure defines the SQL query syntax in LiteDB. Keyworks and function names are case-insensitive. [ EXPLAIN ] SELECT [, ] [ …

INSERT

The following structure defines the SQL insert syntax in LiteDB. Keyworks are case-insensitive. INSERT INTO {collection}[: {autoIdType}] …

UPDATE

The following structure defines the SQL update syntax in LiteDB. Keyworks and function names are case-insensitive. UPDATE SET = [, = ] | …

DELETE

The following structure defines the SQL delete syntax in LiteDB. Keyworks and function names are case-insensitive. DELETE WHERE …

MISC

Collection Renaming RENAME COLLECTION TO collection is the current name of the collection. newName is the new name of the collection. …

Functions

Aggregate Functions COUNT(array) - Returns the number of elements in array MIN(array) - Returns the lowest value in array MAX(array) - …

Interfaces and Classes

LiteDatabase Constuctors Signature Description LiteDatabase(string connectionString, BsonMapper mapper = null) Creates a new instance …