2 implementations of UpdatedRowSource
System.Data.Common (1)
System\Data\Common\DbCommand.cs (1)
81public abstract UpdateRowSource UpdatedRowSource { get; set; }
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (1)
43public override System.Data.UpdateRowSource UpdatedRowSource { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
4 references to UpdatedRowSource
System.Data.Common (4)
System\Data\Common\DbDataAdapter.cs (4)
1114batchCommands[0]._updatedRowSource = dataCommand.UpdatedRowSource; 1128if (0 == (UpdateRowSource.FirstReturnedRecord & dataCommand.UpdatedRowSource)) 1137batchCommands[commandCount]._updatedRowSource = dataCommand.UpdatedRowSource; 1502UpdateRowSource updatedRowSource = dataCommand.UpdatedRowSource;