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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fixed
ReadModelScenario<T> now correctly round-trips read-model properties typed as a collection of bare concepts (e.g. IReadOnlyList<MyConcept> where MyConcept : ConceptAs<T>). Previously such a property threw a JsonException ("Cannot get the value of a token type 'StartObject' as a string") when the projected instance was materialized, because the projection harness serialized the state without the concept-aware serializer options while deserializing with them. Scalar concept properties round-trip the same way.