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
I'm encountering an issue with the Output method in the StepBuilder class. When I try to map an entity (a complex data object), the process fails.
The problem seems to be in the MemberMapParameter constructor. This constructor checks if the value being mapped is accessed using a "member access expression" (e.g., object.property). However, entities are treated as parameters (simple variables) and have a NodeType of Parameter.
Because of this mismatch, the MemberMapParameter constructor throws a "not supported" exception, preventing the mapping of my entity.
The text was updated successfully, but these errors were encountered:
I'm encountering an issue with the Output method in the StepBuilder class. When I try to map an entity (a complex data object), the process fails.
The problem seems to be in the MemberMapParameter constructor. This constructor checks if the value being mapped is accessed using a "member access expression" (e.g., object.property). However, entities are treated as parameters (simple variables) and have a NodeType of Parameter.
Because of this mismatch, the MemberMapParameter constructor throws a "not supported" exception, preventing the mapping of my entity.
The text was updated successfully, but these errors were encountered: