Basic LINQ How to update Column value using Regular method and Linq method using UiPath

Need to add prefix value (Mr.) for all rows

Linq Workflow
image

(From Row In dt_Input.AsEnumerable

Let Name= "Mr."+Row("Name").ToString

Select dt_Output.Rows.Add(Name)).CopyToDataTable

Thanks,
Rajkumar