Georgy
Georgy
Same problem
Found that with fw version `1.8.1.233 ` and `mscorlib v100.5.0.19` and `nanoFramework.Device.Bluetooth v100.0.5.0` it works okay.
> I've managed to generate json converters, but I struggle to understand how to make it work in .NET 6 in such a way that one could augment existing `JsonSerializerOptions`...
Found that `InsertOrUpdateAsync` with empty `onDuplicateKeyUpdateSetter` works as InsertIfNotExists. ```C# await table.InsertOrUpdateAsync( insertSetter: () => new () { //set your properties here }, onDuplicateKeyUpdateSetter: category => new () { }...