IDataParameter.SourceVersion Propriedade

Definição

Obtém ou define o DataRowVersion a ser usado ao carregar Value.Gets or sets the DataRowVersion to use when loading Value.

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

Valor da propriedade

DataRowVersion

Um dos valores de DataRowVersion.One of the DataRowVersion values. O padrão é Current.The default is Current.

Exceções

A propriedade não foi definida como um dos valores de DataRowVersion.The property was not set one of the DataRowVersion values.

Exemplos

O exemplo a seguir cria uma instância da classe de implementação, SqlParameter e define algumas de suas propriedades.The following example creates an instance of the implementing class, SqlParameter, and sets some of its properties.

public void CreateSqlParameter()
{
    SqlParameter parameter = new SqlParameter(
        "@Description", SqlDbType.VarChar);
    parameter.IsNullable = true;
    parameter.SourceColumn = "Description";
    parameter.SourceVersion = DataRowVersion.Current;
    parameter.Direction = ParameterDirection.Output;
}
Public Sub CreateSqlParameter()
    Dim parameter As New SqlParameter( _
        "@Description", SqlDbType.VarChar)
    parameter.IsNullable = True
    parameter.SourceColumn = "Description"
    parameter.SourceVersion = DataRowVersion.Current
    parameter.Direction = ParameterDirection.Output
End Sub 

Comentários

Essa propriedade é usada pelo UpdateCommand durante o Update para determinar se o valor original ou atual é usado para um valor de parâmetro.This property is used by the UpdateCommand during the Update to determine whether the original or current value is used for a parameter value. Isso permite que as chaves primárias sejam atualizadas.This allows primary keys to be updated. Essa propriedade é ignorada pelo InsertCommand e DeleteCommand .This property is ignored by the InsertCommand and DeleteCommand. Essa propriedade é definida como a versão do DataRow usada pela Item[] propriedade ou o GetChildRows método do DataRow objeto.This property is set to the version of the DataRow used by the Item[] property, or the GetChildRows method of the DataRow object.

Aplica-se a