SQLite DocumentDB Releases
1.1 - February 23, 2026
Section titled “1.1 - February 23, 2026” Feature
SetProperty — update a single scalar JSON field via json_set without deserializing the document. Supports nested paths (e.g. o.ShippingAddress.City)
Feature
RemoveProperty — strip a field from the stored JSON via json_remove. Works on any property type including collections and nested objects
Feature
Both SetProperty and RemoveProperty have reflection-based and AOT-safe overloads, and work inside transactions
1.0 - February 22, 2026
Section titled “1.0 - February 22, 2026” Feature
Initial Public Release
Feature
Schema-free JSON document storage on top of SQLite
Feature
LINQ expression queries translated to json_extract SQL with support for equality, comparisons, logical operators, null checks, string methods, nested properties, and collection queries
Feature
SQL-level projections via json_object for extracting specific fields without full deserialization
Feature
IAsyncEnumerable streaming with GetAllStream and QueryStream
Feature
Expression-based JSON indexes for up to 30x faster queries on indexed properties
Feature
Full AOT and trimming support with JsonTypeInfo overloads on every API
Feature
Auto-resolving type info from configured JsonSerializerContext
Feature
Transactions with automatic commit/rollback via RunInTransaction
Feature
Dependency injection registration via AddSqliteDocumentStore
Feature
Configurable type name resolution (ShortName or FullName)
Feature
UseReflectionFallback option for strict AOT enforcement