// // System.Data.UpdateRowSource.cs // // Author: // Christopher Podurgiel (cpodurgiel@msn.com) // // (C) Chris Podurgiel // namespace System.Data { /// /// Specifies how query command results are applied to the row being updated. /// public enum UpdateRowSource { Both, FirstReturnedRecord, None, OutputParameters } }