IDataParameter::SourceVersion Property
.NET Framework (current version)
Gets or sets the DataRowVersion to use when loading Value.
Assembly: System.Data (in System.Data.dll)
property DataRowVersion SourceVersion { DataRowVersion get(); void set(DataRowVersion value); }
Property Value
Type: System.Data::DataRowVersionOne of the DataRowVersion values. The default is Current.
| Exception | Condition |
|---|---|
| ArgumentException | The property was not set one of the DataRowVersion values. |
This property is used by the UpdateCommand during the Update to determine whether the original or current value is used for a parameter value. This allows primary keys to be updated. This property is ignored by the InsertCommand and DeleteCommand. This property is set to the version of the DataRow used by the Item property, or the GetChildRows method of the DataRow object.
The following example creates an instance of the implementing class, SqlParameter, and sets some of its properties.
.NET Framework
Available since 1.1
Available since 1.1
Show: