Exemplo n.º 1
0
 private void CreateTransformation(LibCF.DataFlow dataFlow)
 {
     _RowCount = new LibDF.RowCount("rc,hk - Count inserted rows", _RowCountVar)
                 .AddComponent(dataFlow);
 }
 private void RowCount(LibCF.DataFlow dataFlow, LibDF.OutputWrapper output, Lib.Variable variable)
 {
     LibDF.RowCount RowCount = new LibDF.RowCount("RowCount", variable)
                               .AddComponent(dataFlow);
     new LibDF.Path(output, RowCount.DefaultInput).Connect(dataFlow);
 }