ObjectDataSourceView.SelectCountMethod Property

Definition

Gets or sets the name of the method or function that the ObjectDataSourceView control invokes to retrieve a row count.

public:
 property System::String ^ SelectCountMethod { System::String ^ get(); void set(System::String ^ value); };
public string SelectCountMethod { get; set; }
member this.SelectCountMethod : string with get, set
Public Property SelectCountMethod As String

Property Value

A string that represents the name of the method or function that the ObjectDataSourceView uses to retrieve a row count. The default is an empty string ("").

Remarks

The SelectCountMethod identifies a business object method that is used to retrieve a total row count to support data source paging. The SelectCountMethod property is evaluated, only if the EnablePaging property is set to true. For information on how paging is supported by the ObjectDataSourceView, see EnablePaging.

The value of the SelectCountMethod property is stored in view state.

Applies to

See also