G
GG
This works
(from s1 in seq1
where s1.Field<string>("EmployeeName")=="Ahmed"
select s1).Single().SetField<string>("EmployeeName","Hema");
but this does not work
(from s1 in seq1
where s1.Field<string>("EmployeeName")=="Ahmed"
select s1).SetField<string>("EmployeeName","Hema");
Any ideas how to get the SetField to update all the rows?
Thanks
(from s1 in seq1
where s1.Field<string>("EmployeeName")=="Ahmed"
select s1).Single().SetField<string>("EmployeeName","Hema");
but this does not work
(from s1 in seq1
where s1.Field<string>("EmployeeName")=="Ahmed"
select s1).SetField<string>("EmployeeName","Hema");
Any ideas how to get the SetField to update all the rows?
Thanks