Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

DbParameter.SourceVersion Property

Definition

Namespace:
System.Data.Common
Assemblies:
netstandard.dll, System.Data.Common.dll
Assembly:
System.Data.Common.dll
Assembly:
System.Data.dll
Assembly:
netstandard.dll
Source:
DbParameter.cs
Source:
DbParameter.cs
Source:
DbParameter.cs
Source:
DbParameter.cs
Source:
DbParameter.cs

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Gets or sets the DataRowVersion to use when you load Value.

public:
 virtual property System::Data::DataRowVersion SourceVersion { System::Data::DataRowVersion get(); void set(System::Data::DataRowVersion value); };
public:
 abstract property System::Data::DataRowVersion SourceVersion { System::Data::DataRowVersion get(); void set(System::Data::DataRowVersion value); };
public virtual System.Data.DataRowVersion SourceVersion { get; set; }
public abstract System.Data.DataRowVersion SourceVersion { get; set; }
member this.SourceVersion : System.Data.DataRowVersion with get, set
Public Overridable Property SourceVersion As DataRowVersion
Public MustOverride Property SourceVersion As DataRowVersion

Property Value

One of the DataRowVersion values. The default is Current.

Implements

Exceptions

The property is not set to one of the DataRowVersion values.

Remarks

Used by UpdateCommand during an Update operation to determine whether the parameter value is set to Current or Original. This lets primary keys be updated. This property is set to the version of the DataRow used by the DataRow.Item property, or the GetChildRows method of the DataRow object.

Applies to

See also


Feedback

Was this page helpful?