We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a1241ee + eb6197a commit fb708ddCopy full SHA for fb708dd
docs/usage/options.md
@@ -75,9 +75,6 @@ We use Newtonsoft.Json for all serialization needs.
75
If you want to change the default serializer settings, you can:
76
77
```c#
78
-options.SerializerSettings = new JsonSerializerSettings()
79
-{
80
- NullValueHandling = NullValueHandling.Ignore,
81
- ContractResolver = new DasherizedResolver()
82
-}
+options.SerializerSettings.NullValueHandling = NullValueHandling.Ignore;
+options.SerializerSettings.ContractResolver = new DasherizedResolver();
83
```
0 commit comments