-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Closed
Description
Description
In FilterAndPayloadSpecs, TransformSpec can only access payload properties declared in the current class but not in base class.
Configuration
Regression?
Other information
Proposed fix:
Change DeclaredProperties and GetDeclaredProperty to enable access to declared and inherited properties in current class and base class.
Line 945 in d14b50a
| PropertyInfo? propertyInfo = typeInfo.GetDeclaredProperty(propertyName); |
Line 714 in d14b50a
| foreach (PropertyInfo property in curTypeInfo.DeclaredProperties) |