LinqDataSourceSelectEventArgs Class
Provides data for the Selecting event.
Assembly: System.Web.Extensions (in System.Web.Extensions.dll)
System::EventArgs
System.ComponentModel::CancelEventArgs
System.Web.UI.WebControls::LinqDataSourceSelectEventArgs
| Name | Description | |
|---|---|---|
![]() | LinqDataSourceSelectEventArgs(DataSourceSelectArguments^, IDictionary<String^, Object^>^, IOrderedDictionary^, IDictionary<String^, Object^>^, IDictionary<String^, Object^>^, IDictionary<String^, Object^>^) | Initializes a new instance of the LinqDataSourceSelectEventArgs class. |
| Name | Description | |
|---|---|---|
![]() | Arguments | Gets values that determine how the data is returned. |
![]() | Cancel | Gets or sets a value indicating whether the event should be canceled.(Inherited from CancelEventArgs.) |
![]() | GroupByParameters | Gets the collection of parameters that is used to create the GroupBy clause. |
![]() | OrderByParameters | Gets the collection of parameters that is used to create the OrderBy clause. |
![]() | OrderGroupsByParameters | Gets the collection of parameters that are used to create the clause that specifies how grouped data is sorted. |
![]() | Result | Gets or sets the data object that is used in the data query. |
![]() | SelectParameters | Gets the collection of parameters that is used to create the Select clause. |
![]() | WhereParameters | Gets the collection of parameters that is used to create the Where clause. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
The LinqDataSourceSelectEventArgs object is passed to event handlers for the Selecting event of the LinqDataSource control. You use the LinqDataSourceSelectEventArgs object to manually specify what data is returned, and how the data is sorted and paged when it is returned. You can programmatically add or remove parameters to the GroupBy, OrderBy, OrderGroupsBy, Select, and Where clauses by using the GroupByParameters, OrderByParameters, OrderGroupsByParameters, SelectParameters, and WhereParameters collections.
The Result property enables you to change the data object that is used for the query. If you assign an object to the Result property, that object will be used for queries instead of the object specified in the TableName property of the LinqDataSource control.
The Arguments property enables you to customize how returned data is sorted and paged. The data-bound control passes sorting and paging properties through the Arguments property. If you have to manually handle sorting or paging, set the AutoSort property or AutoPage property of the LinqDataSource control to false. You can then perform the customized query for sorting or paging in a handler for the Selecting event.
If the RetrieveTotalRowCount property is set to true, you must return a value for the TotalRowCount property.
Available since 3.5
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


