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
How do you set up a Configuration that includes a "Collection" attribute? Please refer the test code snippet shown below; I'm not able to make it work.
On the other hand, Configuration.withoutProperty works with the PropertyPathaliases.
Good catch! Looks like that's a bug. The problem is, once you configure included properties, all other properties are implicitly excluded. The current implementation is a little bit too restrictive though, as it also excludes the children of included properties. So even though the aliases are included, the entry Roger Harper is excluded and therefore no change is detected. I'll try to fix this sometime this week.
As a workaround, you could just not include anything specifically (if possible) or use the excludes instead.
How do you set up a
Configuration
that includes a "Collection" attribute? Please refer the test code snippet shown below; I'm not able to make it work.On the other hand,
Configuration.withoutProperty
works with thePropertyPath
aliases
.Object class to compare:
Test class:
The text was updated successfully, but these errors were encountered: