JK_MECH
(JK MECH)
1
hi all,
i am trying to update column values with “Mango” ,i am using below condition but i am getting error
ppr
(Peter Preuss)
2
Select operator is for Projection, but not for update
Additional keep in mind:
ToString() will return a value, but will not offer it as data assignment item and cannot be used for the left side
JK_MECH
(JK MECH)
4
but with help of Select method we can update Array items,but we can not update data table items
ppr
(Peter Preuss)
5
before commenting this statement, please share with us the code statement which should doing this and is doing this successfully. Thanks
Anil_G
(Anil Gorthi)
6
@JK_MECH
with select you cannot update lists as well
for your case try expression in assign
dt.Columns("Fruits").Expression = "'Mango'"