我在LinqPad中提交更改时遇到问题.我在LinqPad中使用Oracle数据库而不是IQ驱动程序.我可以检索数据,但我不知道如何提交数据库的更改.
我从数据库中检索数据:
var items = Asyncqueue.Where(x => ids.Any(y=> y == x.Asyncqueueid));
// then I have to fix data
Run Code Online (Sandbox Code Playgroud)
我试图像这样设置提交操作:
Asyncqueue.SetSubmitAction(items, SubmitAction.Update);
Run Code Online (Sandbox Code Playgroud)