To add this support JsonConverter need to have override 2 methods.
public override Id ReadAsPropertyName(...)
public override void WriteAsPropertyName(...)
Now it is impossible to model like.
class MyFoo {
prop Dictionary<StronglyId, ...> MyProperty {get; set;}
}
To add this support JsonConverter need to have override 2 methods.
Now it is impossible to model like.
class MyFoo {
prop Dictionary<StronglyId, ...> MyProperty {get; set;}
}