LinqDataSourceSelectEventArgs.Arguments Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets values that determine how the data is returned.
public:
property System::Web::UI::DataSourceSelectArguments ^ Arguments { System::Web::UI::DataSourceSelectArguments ^ get(); };
public System.Web.UI.DataSourceSelectArguments Arguments { get; }
member this.Arguments : System.Web.UI.DataSourceSelectArguments
Public ReadOnly Property Arguments As DataSourceSelectArguments
Property Value
An object that contains values for determining how the data is returned.
Remarks
A data-bound control passes properties to the LinqDataSource control through the Arguments property in order to specify how paging and sorting should occur. If the AutoPage property or the AutoSort property is set to true
, the LinqDataSource control automatically sorts or pages based on the properties from the data-bound control.
You can customize how the data is sorted and paged from a query by setting the AutoPage and AutoSort properties to false
and then creating a handler for the Selecting event. In the event handler, use the Arguments property to retrieve the sorting and paging properties from the data-bound control. Then customize the query as needed, based on the properties from the Arguments property. If the RetrieveTotalRowCount property of the DataSourceSelectArguments object is set to true
, you must return a value for the TotalRowCount property.