Hi
I have below code and i want to update the numberofshift value in records
context.Connection.Open(); context.Transaction = context.Connection.BeginTransaction(); foreach (RepeaterItem item in rptBulkData.Items) { MachineShiftDetail objRecord = new MachineShiftDetail { NumberOfShift = Convert.ToInt32(txtNoOfShift.Text), }; context.MachineShiftDetails...InsertOnSubmit(objRecord); context.SubmitChanges(); context.Transaction.Commit(); }
Thanks