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
Currently Set(x => x.Parent.Child) will store in the underlying dictionary under the key Child rather than Parent.Child so if you then have Set(x => x.Parent2.Child) that will conflict.
I've seen this trip people up multiple times before - it's not intuitive.
The text was updated successfully, but these errors were encountered:
Currently
Set(x => x.Parent.Child)
will store in the underlying dictionary under the keyChild
rather thanParent.Child
so if you then haveSet(x => x.Parent2.Child)
that will conflict.I've seen this trip people up multiple times before - it's not intuitive.
The text was updated successfully, but these errors were encountered: