I have a problem with committing changes in LinqPad. I am using Oracle database over IQ driver in LinqPad. I can retrieve data but I don't know how to submit changes to database.
I retrieve data from database:
 var items = Asyncqueue.Where(x => ids.Any(y=> y == x.Asyncqueueid));
 // then I have to fix data 
I have tried to set submit action like this:
 Asyncqueue.SetSubmitAction(items, SubmitAction.Update);
 
     
     
     
     
    