| 12345678910111213141516171819202122 |
- //
- // System.Data.UpdateRowSource.cs
- //
- // Author:
- // Christopher Podurgiel ([email protected])
- //
- // (C) Chris Podurgiel
- //
- namespace System.Data
- {
- /// <summary>
- /// Specifies how query command results are applied to the row being updated.
- /// </summary>
- public enum UpdateRowSource
- {
- Both,
- FirstReturnedRecord,
- None,
- OutputParameters
- }
- }
|