#2901 Add support for overflow to POCOs - #2918
Conversation
|
Use |
|
Use |
|
There are too many things I want to comment on to do this via PR comments. Not because it's bad, but because I have not worked on this so I do not know what complications impacted your design :) We should discuss in person or over slack. |
Description
This PR is the first shot at adding support for overflow to POCOs. It should not introduce major breaking changes.
Remarks
this[]operator for setting values, as we already had a getter for it hidden behindIReadOnlyDictionary. This meant that an existingthis[]operator on theParameterresource had to be removed as it conflicted with this operator inBase. Later I implemented this operator explicitly, so the problem does not exist anymore, but just for future flexibility I am removing this minor feature. This is a breaking change.ICollection<T>to detect whether an element repeated or not. I changed the method in ReflectionHelper to detectIList<>instead. This is a breaking change.Related issues
Fixes #2901.