How to do this in an SSIS script C#script . Currently, datetime is a row from a column . I'm trying to doJSON
DateTime convertedDate = DateTime.Parse(dateString);
but the error says it is CreationTimenot in the current context. I tried inside all sections like
public override void Input0_ProcessInputRow(Input0Buffer Row)
AND
public override void PostExecute()
but still get the same error.
source
share