I have the following terrible code:
CurrentInvoice = invoiceTable.AsEnumerable()
.First().ItemArray
.Where(a == null, a = (int a).Tostring("null"))
.Select(i => i.ToString())
.ToArray();
I'm trying to use the "Where" method to pass any null values as a physical string that reads "null", without breaking the rest of the line. Am I going to get anywhere using the "Where" method?