2 implementations of UpdatedRowSource
System.Data.Common (1)
System\Data\Common\DbCommand.cs (1)
81
public abstract UpdateRowSource
UpdatedRowSource
{ get; set; }
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (1)
43
public 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)
1114
batchCommands[0]._updatedRowSource = dataCommand.
UpdatedRowSource
;
1128
if (0 == (UpdateRowSource.FirstReturnedRecord & dataCommand.
UpdatedRowSource
))
1137
batchCommands[commandCount]._updatedRowSource = dataCommand.
UpdatedRowSource
;
1502
UpdateRowSource updatedRowSource = dataCommand.
UpdatedRowSource
;