samuelpsfung
samuelpsfung
`json.PopulateDefault(schema)` would be a useful extension that works in the same way as `DefaultValueHandling.Populate`. Attached testcase demonstrate its usage: [TestPopulateDefault.zip](https://github.com/JamesNK/Newtonsoft.Json.Schema/files/4292160/TestPopulateDefault.zip)
I run the example with MySQL, there are logs from the event listener, but the modified timestamp is not persisted to DB.  --- #### Document Details ⚠ *Do not...
```c# public class BaseClass { public int ID { get; set; } } public class SubClass : BaseClass { } var param = Expression.Parameter(typeof(SubClass)); var body = Expression.Property(param, "ID"); var...