0

On a condition I want to suppress returning a row in code behind for U-SQL REDUCE, I am not able to figure out the return statement for that.

To return a row as given in the documentation examples I used

yield return output.AsReadOnly();

Thanks, Nasir

Nasir
  • 167
  • 6

1 Answers1

1

The yield adds the returned row to the result enumerator. So I would assume that not yielding an output object will not add a row.

Michael Rys
  • 6,684
  • 15
  • 23