litedb-org/LiteDB.Studio

[Question] Update Embedded Object in LiteDB Studio

Opened this issue · 0 comments

I have an object in Lite DB. Let's call it Shipment. This object has a sub-object called PortoInformation. There is a Format property in the object. How can I update this property via Update? The following query runs into an error:

Update Shipment Set PortoInformation.Format = "Big" Where ShipmentId = 1

Such a query is always returned with an error:

Unexpected token `.` in position 37.

 Shipment Set PortoInformation.Format = "Big" -------------------------------^

Would be really great if this would work.