DataBoundControl.PerformSelect Метод

Определение

Извлекает данные из связанного источника данных.

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

Примеры

В следующем примере кода показано, как переопределить PerformSelect метод для извлечения данных из связанного источника данных с помощью GetData метода и привязать его к элементам элемента управления. Этот пример кода является частью более крупного примера, предоставленного DataBoundControl для класса.

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

Комментарии

Метод PerformDataBinding вызывается после получения данных для привязки данных к элементам элемента управления, привязанного к данным. Производные типы переопределяют этот метод для получения данных только в том случае, если реализация по умолчанию не является адекватной. Как правило, достаточно предоставить DataSourceViewSelectCallback делегат, выполняющий любую пользовательскую работу с данными PerformDataBinding , а не реализовать метод.

Применяется к

См. также раздел