QueryableDataSourceView Class
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.
Supports the QueryableDataSource control and provides an interface for data-bound controls to perform LINQ data operations.
public ref class QueryableDataSourceView abstract : System::Web::UI::DataSourceView, System::Web::UI::IStateManager
public abstract class QueryableDataSourceView : System.Web.UI.DataSourceView, System.Web.UI.IStateManager
type QueryableDataSourceView = class
inherit DataSourceView
interface IStateManager
Public MustInherit Class QueryableDataSourceView
Inherits DataSourceView
Implements IStateManager
- Inheritance
- Derived
- Implements
Constructors
QueryableDataSourceView(DataSourceControl, String, HttpContext) |
Initializes a new instance of the QueryableDataSourceView class. |
Fields
EventSelected |
Specifies whether the event that causes the data-retrieval operation to complete has occurred. |
EventSelecting |
Specifies whether the event that occurs before a data-retrieval operation has occurred. |
Properties
AutoGenerateOrderByClause |
Gets or sets a value that indicates whether the QueryableDataSourceView object that is associated with the current QueryableDataSource control creates a dynamic an |
AutoGenerateWhereClause |
Gets or sets a value that indicates whether the QueryableDataSourceView object that is associated with the current QueryableDataSource control creates a dynamic |
AutoPage |
Gets or sets a value that indicates whether the QueryableDataSourceView object that is associated with the current QueryableDataSource control supports paging by default. |
AutoSort |
Gets or sets a value that indicates whether the QueryableDataSourceView object that is associated with the current QueryableDataSource control supports sorting by default. |
CanDelete |
Gets a value that indicates whether the QueryableDataSourceView object that is associated with the current QueryableDataSource control supports delete operations. |
CanInsert |
Gets a value that indicates whether the QueryableDataSourceView object that is associated with the current QueryableDataSource control supports insert operations. |
CanPage |
Gets a value that indicates whether the QueryableDataSourceView object that is associated with the current QueryableDataSource control supports paging. |
CanRetrieveTotalRowCount |
Gets a value that indicates whether the QueryableDataSourceView object that is associated with the current QueryableDataSource control supports retrieving the total number of data rows, and retrieving the data. |
CanSort |
Gets a value that indicates whether the QueryableDataSourceView object that is associated with the current QueryableDataSource control supports a sorted view of the retrieved data. |
CanUpdate |
Gets a value that indicates whether the QueryableDataSourceView object that is associated with the current QueryableDataSource control supports update operations. |
DeleteParameters |
Gets the collection that contains the parameters that are used during a delete operation. |
EntityType |
Gets the type of the data object to use for CUD operations. |
Events |
Gets a list of event-handler delegates for the data source view. (Inherited from DataSourceView) |
GroupBy |
Gets or sets the name or names of the properties to use during the select operation for grouping data. |
GroupByParameters |
Gets a collection of parameters whose values are used to create the |
InsertParameters |
Gets a collection of parameters that are used during the insert operation. |
IsTrackingViewState |
Gets a value that indicates whether the QueryableDataSourceView object is saving changes to its view state. |
Name |
Gets the name of the data source view. (Inherited from DataSourceView) |
OrderBy |
Gets or sets the name or names of the properties that are used during the select operation to sort data. |
OrderByParameters |
Gets a collection of parameters that are used during the select operation to sort data. |
OrderGroupsBy |
Gets or sets the names of the properties that are used during the select operation to sort grouped data. |
OrderGroupsByParameters |
Gets a collection of parameters that are used to create the |
SelectNew |
Gets or sets the properties and calculated values that are included in the retrieved data. |
SelectNewParameters |
Gets the collection of parameters that are used during a data-retrieval operation. |
UpdateParameters |
Gets the collection of parameters that are used during an update operation. |
Where |
Gets or sets a value that specifies what conditions must be true for a row to be included in the retrieved data. |
WhereParameters |
Gets a collection of parameters that are used to create a |
Methods
BuildDeleteObject(IDictionary, IDictionary, IDictionary<String,Exception>) |
Creates the objects to use for the delete operation. |
BuildInsertObject(IDictionary, IDictionary<String,Exception>) |
Creates the objects to use for the insert operation by using the values to insert and the error message to display if the operation fails. |
BuildQuery(DataSourceSelectArguments) |
Creates a Select query expression by using the select arguments of the data source. |
BuildUpdateObjects(IDictionary, IDictionary, IDictionary, IDictionary<String,Exception>) |
Creates the objects to use for the update operation by using the specified values. |
CanExecute(String) |
Determines whether the specified command can be executed. (Inherited from DataSourceView) |
ClearOriginalValues() |
Clears the original values. |
CreateQueryContext(DataSourceSelectArguments) |
Creates an instance of a query context object that contains the evaluated parameter collections. |
Delete(IDictionary, IDictionary, DataSourceViewOperationCallback) |
Performs an asynchronous delete operation on the list of data that the DataSourceView object represents. (Inherited from DataSourceView) |
Delete(IDictionary, IDictionary) |
Performs a delete operation. |
DeleteObject(Object) |
Deletes a data object from a table. |
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
ExecuteCommand(String, IDictionary, IDictionary, DataSourceViewOperationCallback) |
Executes the specified command. (Inherited from DataSourceView) |
ExecuteCommand(String, IDictionary, IDictionary) |
Executes the specified command. (Inherited from DataSourceView) |
ExecuteDelete(IDictionary, IDictionary) |
Performs a delete operation on data items that the QueryableDataSourceView object represents by using the specified values. |
ExecuteInsert(IDictionary) |
Performs an insert operation on the data items that the QueryableDataSourceView object represents by using the specified value. |
ExecutePaging(IQueryable, QueryContext) |
Executes paging by using the QueryContext object from the QueryableDataSource object. |
ExecuteQuery(IQueryable, QueryContext) |
Performs a query, sort, or paging operation on the IQueryable<T> object. |
ExecuteQueryExpressions(IQueryable, QueryContext) |
Executes query expressions by using an IQueryable object and the QueryContext object. |
ExecuteSelect(DataSourceSelectArguments) |
Performs a data-retrieval operation. |
ExecuteSorting(IQueryable, QueryContext) |
Performs a sorting operation. |
ExecuteUpdate(IDictionary, IDictionary, IDictionary) |
Performs an update operation. |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetOriginalValues(IDictionary) |
Retrieves the original values for the specified keys that were stored during the Select operation. |
GetSource(QueryContext) |
Gets initial IQueryable object for the data source view based on the query context. |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
HandleValidationErrors(IDictionary<String,Exception>, DataSourceOperation) |
Called by methods that perform CRUD operations when a CRUD operation fails in the data-object building process. |
Insert(IDictionary, DataSourceViewOperationCallback) |
Performs an asynchronous insert operation on the list of data that the DataSourceView object represents. (Inherited from DataSourceView) |
Insert(IDictionary) |
Performs an asynchronous insert operation on the data items that the QueryableDataSourceView object represents. |
InsertObject(Object) |
Inserts data objects into a QueryableDataSourceView object. |
LoadViewState(Object) |
Restores the previously saved view state for the data source view. |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
OnDataSourceViewChanged(EventArgs) |
Raises the DataSourceViewChanged event. (Inherited from DataSourceView) |
OnQueryCreated(QueryCreatedEventArgs) |
Raises the QueryCreated event after the QueryableDataSource control has created an IQueryable object. |
OnQueryParametersChanged(Object, EventArgs) |
Calls the RaiseViewChanged() method. |
RaiseUnsupportedCapabilityError(DataSourceCapabilities) |
Called by the RaiseUnsupportedCapabilitiesError(DataSourceView) method to compare the capabilities requested for an ExecuteSelect(DataSourceSelectArguments) operation against those that the view supports. (Inherited from DataSourceView) |
RaiseViewChanged() |
Calls the OnDataSourceViewChanged(EventArgs) method. |
SaveViewState() |
Saves changes to view state for the QueryableDataSourceView object since the time that the page was posted to the server. |
Select(DataSourceSelectArguments, DataSourceViewSelectCallback) |
Gets a list of data asynchronously from the underlying data storage. (Inherited from DataSourceView) |
StoreOriginalValues(IList, Func<PropertyDescriptor,Boolean>) |
Stores the original values from the select operation in the control's view state when delete or update operations are enabled. |
StoreOriginalValues(IList) |
Stores the original values from the |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |
TrackViewState() |
Causes tracking of view-state changes to the server control so that they can be stored in the server control's state. |
Update(IDictionary, IDictionary, IDictionary, DataSourceViewOperationCallback) |
Performs an asynchronous update operation on the list of data that the DataSourceView object represents. (Inherited from DataSourceView) |
Update(IDictionary, IDictionary, IDictionary) |
Performs an update operation. |
UpdateObject(Object, Object) |
Updates a data object. |
Events
DataSourceViewChanged |
Occurs when the data source view has changed. (Inherited from DataSourceView) |
QueryCreated |
Occurs when a query is created. |
Explicit Interface Implementations
IStateManager.IsTrackingViewState |
When implemented by a class, gets a value that indicates whether a server control is tracking its view-state changes. |
IStateManager.LoadViewState(Object) |
When implemented by a class, loads the server control's previously saved view state for the control. |
IStateManager.SaveViewState() |
When implemented by a class, saves the changes to a server control's view state to an object. |
IStateManager.TrackViewState() |
When implemented by a class, gets a value that indicates whether a server control is tracking its view-state changes. |