I've got a C#-Statement in LINQpad 4.0 like this:
var x = (from y in MyTable
where y.ID == 12345
select y).Single();
x.PropA = "abc";
SubmitChanges();
When i execute the Statements i get the error The name "SubmitChanges" is not available in the current context
How can i fix the problem or update my data using linqpad? On my research i just found something about using a second datacontext, but it should work with the first context...