Convert object to Dictionary or ObjectDictionary ignoring non default values

ServiceStack has so many utils, I checked the reflection ones and all the extension methods but don’t see a way to convert an object to a dictionary with only its non default values.

Something like:

var item = new Item(); item.ToObjectDictionaryWithNonDefaultValues()

Is there a way with the built in methods to achieve this?

Doesn’t exist, you’ll need to remove the entries yourself.