SqlParameter.SourceVersion Propriedade

Definição

Obtém ou define o DataRowVersion a ser usado ao carregar ValueGets 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:
 property System::Data::DataRowVersion SourceVersion { System::Data::DataRowVersion get(); void set(System::Data::DataRowVersion value); };
public override System.Data.DataRowVersion SourceVersion { get; set; }
[System.Data.DataSysDescription("DataParameter_SourceVersion")]
public System.Data.DataRowVersion SourceVersion { get; set; }
member this.SourceVersion : System.Data.DataRowVersion with get, set
[<System.Data.DataSysDescription("DataParameter_SourceVersion")>]
member this.SourceVersion : System.Data.DataRowVersion with get, set
Public Overrides Property SourceVersion As DataRowVersion
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.

Implementações

Atributos

Exemplos

O exemplo a seguir cria um SqlParameter e define algumas de suas propriedades.The following example creates a SqlParameter and sets some of its properties.

static void CreateSqlParameterSourceVersion()
{
    SqlParameter parameter = new SqlParameter("Description", SqlDbType.VarChar, 88);
    parameter.SourceColumn = "Description";
    parameter.SourceVersion = DataRowVersion.Current;
}
Private Sub CreateSqlParameterSourceVersion()
    Dim parameter As New SqlParameter("Description", SqlDbType.VarChar, 88)
    parameter.SourceColumn = "Description"
    parameter.SourceVersion = DataRowVersion.Current
End Sub

Comentários

Essa propriedade é usada pelo SqlDataAdapter.UpdateCommand durante uma atualização para determinar se o valor original ou atual é usado para um valor de parâmetro.This property is used by the SqlDataAdapter.UpdateCommand during an 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 lets primary keys be updated. Essa propriedade é definida como a versão do DataRow usada pela DataRow.Item propriedade ou um dos DataRow.GetChildRows métodos do DataRow objeto.This property is set to the version of the DataRow used by the DataRow.Item property, or one of the DataRow.GetChildRows methods of the DataRow object.

Aplica-se a