B
BlackSun
Hi,
I have this working code which update a column:
For Each rigaFF As DataRow In Me.dtSizeA.Rows
For Each rigaTemp As DataRow In
Me.dtSizeB.Select(String.Concat("Name = ", CStr(rigaFF(0))))
rigaTemp(18) = rigaFF(3)
Next
Next
Is it possible to do the same with Linq?
Thanks in advance for your help!!!
Cheers, BlackSuna
I have this working code which update a column:
For Each rigaFF As DataRow In Me.dtSizeA.Rows
For Each rigaTemp As DataRow In
Me.dtSizeB.Select(String.Concat("Name = ", CStr(rigaFF(0))))
rigaTemp(18) = rigaFF(3)
Next
Next
Is it possible to do the same with Linq?
Thanks in advance for your help!!!
Cheers, BlackSuna