Is your feature request related to a problem? Please describe.
In one of the projects I work on, we need to assign values to the Id property of ClaimEntry instances.
Describe the solution you'd like
If the Id property has a publicly exposed setter, we will be able to use it.
All the other properties are modifiable either through a publicly exposed setter, or the types used suppose mutability (Values is an IList<object> instances and we can freely add or remove items).
Describe alternatives you've considered
Currently, we are using reflection to deal with this situation, however it is not efficient and quite unnecessary.
Is your feature request related to a problem? Please describe. In one of the projects I work on, we need to assign values to the
Id
property ofClaimEntry
instances.Describe the solution you'd like If the
Id
property has a publicly exposed setter, we will be able to use it.All the other properties are modifiable either through a publicly exposed setter, or the types used suppose mutability (
Values
is anIList<object>
instances and we can freely add or remove items).Describe alternatives you've considered Currently, we are using reflection to deal with this situation, however it is not efficient and quite unnecessary.