How to edit data directly in a grid
Hi, I purchased LINQPad premium in an attempt to replace TOAD for Oracle. However, i'm unsure how to be able to edit my data directly in linqpad? I just wanted to update a few rows without having to use proper update statements to change data on the fly for another application.
Can anyone point me to some simple instructions on how to do this?
Can anyone point me to some simple instructions on how to do this?
Comments
I did run the following statement (note: I'm still a novice at Linq so there might be a better way)
this.ArngSiaAprRevs //Table Name
.First(a => a.Apprrevid == 1) //Where ID = Value
.Reviewcomments = "Updated Comments"; //Column set to something
SubmitChanges();
Thanks again.