I am doing a workflow for a document library. I put a OnWorkflowItemChanged
, and I want to get the value of the column which is changed. I use the workflowProperties.Item["name"]
and use the afterProperties
. But when I use the workflowProperties.Item["column name"]
, I still got the original value. When I use the afterProperties
, it's NULL
.
Then I make another workflow that is the same as above for a list. I can use the workflowProperties.Item["column name"]
to get the new value in OnWorkflowItemChanged
.
Has anyone come across this problem before? Can you give me some help?