-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for IDictionary #137
Comments
Wire supports normal .NET Dictionary class, System.Collections.Immutable.Immutabledictionary and F# maps. Is it a custom dictionary you are trying to serialie? |
In my case, the error occurs when declaring properties or fields with an interface instead of the actual concrete implementation, ex.: private readonly IImmutableDictionary<Guid, Work> AcceptedWork =
ImmutableDictionary<Guid, Work>.Empty; ... then a get ["Wire.ValueSerializers.UnsupportedTypeException: Could not load type 'System.Collections.Immutable.IImmutableDictionary' from assembly 'System.Collections.Immutable'. |
Ok, this seems to be related to #127 |
Without ability to serialize dictionaries it's worthless
The text was updated successfully, but these errors were encountered: