Sdílet prostřednictvím


DataBoundControl.PerformSelect Metoda

Definice

Načte data z přidruženého zdroje dat.

protected:
 override void PerformSelect();
protected override void PerformSelect ();
override this.PerformSelect : unit -> unit
Protected Overrides Sub PerformSelect ()

Příklady

Následující příklad kódu ukazuje, jak přepsat metodu PerformSelect pro načtení dat z přidruženého zdroje dat pomocí GetData metody a svázání s prvky ovládacího prvku. Tento příklad kódu je součástí většího příkladu poskytnutého DataBoundControl pro třídu.

protected override void PerformSelect() {            

   // Call OnDataBinding here if bound to a data source using the
   // DataSource property (instead of a DataSourceID), because the
   // databinding statement is evaluated before the call to GetData.       
    if (! IsBoundUsingDataSourceID) {
        OnDataBinding(EventArgs.Empty);
    }            
    
    // The GetData method retrieves the DataSourceView object from  
    // the IDataSource associated with the data-bound control.            
    GetData().Select(CreateDataSourceSelectArguments(), 
        OnDataSourceViewSelectCallback);
    
    // The PerformDataBinding method has completed.
    RequiresDataBinding = false;
    MarkAsDataBound();
    
    // Raise the DataBound event.
    OnDataBound(EventArgs.Empty);
}
Protected Overrides Sub PerformSelect()

    ' Call OnDataBinding here if bound to a data source using the 
    ' DataSource property (instead of a DataSourceID) because the 
    ' data-binding statement is evaluated before the call to GetData.
    If Not IsBoundUsingDataSourceID Then
        OnDataBinding(EventArgs.Empty)
    End If

    ' The GetData method retrieves the DataSourceView object from the 
    ' IDataSource associated with the data-bound control.            
    GetData().Select(CreateDataSourceSelectArguments(), _
        AddressOf OnDataSourceViewSelectCallback)

    ' The PerformDataBinding method has completed.
    RequiresDataBinding = False
    MarkAsDataBound()

    ' Raise the DataBound event.
        OnDataBound(EventArgs.Empty)

End Sub

Poznámky

Metoda PerformDataBinding se volá po načtení dat pro vytvoření vazby dat k prvkům ovládacího prvku vázaného na data. Odvozené typy přepíší tuto metodu pro načtení dat pouze v případě, že výchozí implementace není vhodná. Obvykle stačí poskytnout delegáta DataSourceViewSelectCallback , který provádí jakoukoli vlastní práci s daty, a ne implementaci PerformDataBinding metody.

Platí pro

Viz také