DBConcurrencyException.Row Propriedade
Definição
Obtém ou define o valor de DataRow que gerou o DBConcurrencyException.Gets or sets the value of the DataRow that generated the DBConcurrencyException.
public:
property System::Data::DataRow ^ Row { System::Data::DataRow ^ get(); void set(System::Data::DataRow ^ value); };
public System.Data.DataRow? Row { get; set; }
public System.Data.DataRow Row { get; set; }
member this.Row : System.Data.DataRow with get, set
Public Property Row As DataRow
Valor da propriedade
O valor do DataRow.The value of the DataRow.
Comentários
Use Row para recuperar o valor da DataRow linha que gerou o DBConcurrencyException .Use Row to retrieve the value of the DataRow row that generated the DBConcurrencyException. Definir o valor de DataRow não tem nenhum efeito.Setting the value of the DataRow has no effect.
Ao executar atualizações em lote com a ContinueUpdateOnError Propriedade do DataAdapter definido como true , essa exceção será gerada se todas as atualizações de linha falharem.When performing batch updates with the ContinueUpdateOnError property of the DataAdapter set to true, this exception is thrown if all row updates fail. Nesse caso, isso DBConcurrencyException contém DataRow objetos para todas as linhas cuja atualização falhou, em vez de apenas um DataRow objeto no Row , e os DataRow objetos afetados podem ser recuperados chamando CopyToRows .In this case, this DBConcurrencyException contains DataRow objects for all rows whose update failed, rather than just the one DataRow object in Row, and the affected DataRow objects can be retrieved by calling CopyToRows.
O suporte à serialização não existe para DataRow objetos.Serialization support does not exist for DataRow objects. Portanto, se você serializar um DBConcurrencyException objeto, o valor da Row Propriedade na versão serializada do objeto será definido como um valor nulo.Therefore, if you serialize a DBConcurrencyException object, the value of the Row property in the serialized version of the object is set to a null value.