c# - How to submit changes in LinqPad -


i have problem committing changes in linqpad. using oracle database on iq driver in linqpad. can retrieve data don't know how submit changes database.

i retrieve data database:

 var items = asyncqueue.where(x => ids.any(y=> y == x.asyncqueueid));  // have fix data  

i have tried set submit action this:

 asyncqueue.setsubmitaction(items, submitaction.update); 

change language in linqpad "c# program" , use following code

void main() {     var p1 = person.single(x => x.id == 1);     p1.name = "test";     savechanges(); } 

Comments

Popular posts from this blog

c++ - Linked List error when inserting for the last time -

java - activate/deactivate sonar maven plugin by profile? -

java - What is the difference between String. and String.this. ? -