mbdavid / LiteDB

LiteDB - A .NET NoSQL Document Store in a single data file
http://www.litedb.org
MIT License
8.62k stars 1.25k forks source link

Support of "List<string>" , save supported, read unsupported #1302

Open christophedemez opened 5 years ago

christophedemez commented 5 years ago

Hi,

We have the following class :

public class MyTest { [JsonProperty("myvalues")] public List MyValues{ get; set; } = new List(); }

If I insert some documents in the db, it works.. I can see them in 'studio', but when I read them back, the 'MyValues' is empty !

Do you know how to fix this ?

Thanks

JensSchadron commented 5 years ago

Hi @christophedemez, First of all, thanks for the bug report.

A few questions