Hi Team,
I am having issue in writing a LINQ for a condition given below,
for each row in order_dt
{
For each row in dt
{
if order_dt(1)=dt(0)
{
order_dt(4)=dt(1)
order_dt(5)=dt(2)
}
}
}
Where, order_dt and dt are 2 datatables. Please help.