SSIS Script组件找不到Property属性set methid

时间:2016-10-19 14:41:18

标签: c# ssis ssis-2012

我有一个任务,我正在从flatfile读取,我想替换我找到选项卡的空间值。当我运行下面的脚本时,它在运行时给我错误,说明找不到属性集方法。屏幕截图下方显示脚本和运行时错误。欢迎任何帮助 Error screen at runtime

这是我的脚本代码

public override void Input0_ProcessInputRow(Input0Buffer Row)
{
    foreach (PropertyInfo dataColumn in Row.GetType().GetProperties())
    {
        if (dataColumn.Name.ToLower().EndsWith("_isnull") == false && dataColumn.PropertyType == typeof(string))
{
        object objValue = dataColumn.GetValue(Row, null);
        if (objValue != null)
        {
            string value = objValue.ToString();
            value.Replace("\t", " ");
            dataColumn.SetValue(Row, value, null);
        }
        }
    }
}

0 个答案:

没有答案