json-flatfile-datastore icon indicating copy to clipboard operation
json-flatfile-datastore copied to clipboard

Simple JSON flat file data store with support for typed and dynamic data.

Results 16 json-flatfile-datastore issues
Sort by recently updated
recently updated
newest added

Any plans to move the library to native system.text.Json from Newtonsoft? It is an unnecessary dependency and going forward likely to be deprecated

enhancement
in progress

With simple JObject, all the codes run correctly. ``` public async void InitData() { var json = @"{'_id': 12, 'array': [ 1, 2, 3 ], 'boolean': true, 'null': null, 'number':...

bug

Currently this is storing data inside a single json file, taking this into consideration would it be possible to make this store into the browser local storage to be used...

feature

I think it would make more sense if both `DateTimeOffset` and `DateTime` don't get converted to local time. Here is my test code: ```cs var myInstance = new MyClass() {...

bug

Replace `Newtonsoft.Json` with `System.Text.Json` Known issues * Performance: System.Text.Json JsonElement and JsonDocument are not mutable * Features: System.Text.Json has limited serialization and converter cababilities Progress: - [ ] CommitActionHandler (in...

enhancement
in progress