I took a LINQ query from here to replace the value of the whole column without using the For Each.
I am getting an error that says Option strict on disallows conversions from String to Boolean which I understand comes from the Where clause, but I do not know LINQ enough to resolve it. Please can somebody help with the correct LINQ query to do this?
@byuli
the result of the lambda function within a Where method hast to be true or false (Boolean)
the LINQ is failing on that, as replace is returning a string and not a boolean