You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've found issues when calling some.ToUntrackable is the whole object implements IDictionary<TKey, TValue> but it's not intended to be used as a dictionary but it's a DynamicObject like a custom ExpandoObject wannabe.
Since I've implemented unwrapping using JSON serialization (i.e. I'm cloning objects), JSON properties are set as dynamic properties while type's properties should have prioritized over dynamic ones.
The text was updated successfully, but these errors were encountered:
I've found issues when calling
some.ToUntrackable
is the whole object implementsIDictionary<TKey, TValue>
but it's not intended to be used as a dictionary but it's aDynamicObject
like a customExpandoObject
wannabe.Since I've implemented unwrapping using JSON serialization (i.e. I'm cloning objects), JSON properties are set as dynamic properties while type's properties should have prioritized over dynamic ones.
The text was updated successfully, but these errors were encountered: