.NET Framework Class Library ObjectDataSourceView Class Supports the ObjectDataSource control and provides an interface for data-bound controls to perform data operations with business and data objects.

Inheritance Hierarchy
Namespace:
System.Web.UI.WebControls
Assembly:
System.Web (in System.Web.dll)

Syntax
Public Class ObjectDataSourceView _
Inherits DataSourceView _
Implements IStateManager
public class ObjectDataSourceView : DataSourceView,
IStateManager
public ref class ObjectDataSourceView : public DataSourceView,
IStateManager
type ObjectDataSourceView =
class
inherit DataSourceView
interface IStateManager
end
The ObjectDataSourceView type exposes the following members.

Constructors

Methods
|
| Name | Description |
|---|
.gif) | CanExecute | Determines whether the specified command can be executed. (Inherited from DataSourceView.) | .gif) | Delete(IDictionary, IDictionary) | Performs a delete operation by calling the business object method that is identified by the DeleteMethod property using the specified keys and oldValues collections. | .gif) | Delete(IDictionary, IDictionary, DataSourceViewOperationCallback) | Performs an asynchronous delete operation on the list of data that the DataSourceView object represents. (Inherited from DataSourceView.) | .gif) | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) | .gif) | ExecuteCommand(String, IDictionary, IDictionary) | Executes the specified command. (Inherited from DataSourceView.) | .gif) | ExecuteCommand(String, IDictionary, IDictionary, DataSourceViewOperationCallback) | Executes the specified command. (Inherited from DataSourceView.) | .gif) | ExecuteDelete | Performs a delete operation using the DeleteMethod method and the specified keys and oldValues collection. (Overrides DataSourceView..::.ExecuteDelete(IDictionary, IDictionary).) | .gif) | ExecuteInsert | Performs an insert operation by calling the business object method that is identified by the InsertMethod property using the specified values collection. (Overrides DataSourceView..::.ExecuteInsert(IDictionary).) | .gif) | ExecuteSelect | Retrieves data from the object that is identified by the TypeName property by calling the method that is identified by the SelectMethod property and passing any values in the SelectParameters collection. (Overrides DataSourceView..::.ExecuteSelect(DataSourceSelectArguments).) | .gif) | ExecuteUpdate | Performs an update operation by calling the method that is identified by the UpdateMethod property and using any parameters that are supplied in the keys, values, or oldValues collections. (Overrides DataSourceView..::.ExecuteUpdate(IDictionary, IDictionary, IDictionary).) | .gif) | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | .gif) | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | .gif) | GetType | Gets the Type of the current instance. (Inherited from Object.) | .gif) | Insert(IDictionary) | Performs an insert operation by calling the business object method that is identified by the InsertMethod property using the specified values collection. | .gif) | Insert(IDictionary, DataSourceViewOperationCallback) | Performs an asynchronous insert operation on the list of data that the DataSourceView object represents. (Inherited from DataSourceView.) | .gif) | LoadViewState | Restores previously saved view state for the data source view. | .gif) | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | .gif) | OnDataSourceViewChanged | Raises the DataSourceViewChanged event. (Inherited from DataSourceView.) | .gif) | OnDeleted | Raises the Deleted event after the ObjectDataSourceView object has completed a delete operation. | .gif) | OnDeleting | Raises the Deleting event before the ObjectDataSourceView object attempts a delete operation. | .gif) | OnFiltering | Raises the Filtering event before the ObjectDataSourceView object attempts a filtering operation. | .gif) | OnInserted | Raises the Inserted event after the ObjectDataSourceView object has completed an insert operation. | .gif) | OnInserting | Raises the Inserting event before the ObjectDataSourceView object attempts an insert operation. | .gif) | OnObjectCreated | Raises the ObjectCreated event after the ObjectDataSourceView creates an instance of the object that is identified by the TypeName property. | .gif) | OnObjectCreating | Raises the ObjectCreating event before the ObjectDataSourceView object creates an instance of a business object to perform a data operation. | .gif) | OnObjectDisposing | Raises the ObjectDisposing event before the ObjectDataSourceView object discards an instantiated type. | .gif) | OnSelected | Raises the Selected event after the ObjectDataSourceView object has completed a data retrieval operation. | .gif) | OnSelecting | Raises the Selecting event before the ObjectDataSourceView object attempts a data retrieval operation. | .gif) | OnUpdated | Raises the Updated event after the ObjectDataSourceView object has completed an update operation. | .gif) | OnUpdating | Raises the Updating event before the ObjectDataSourceView object attempts an update operation. | .gif) | RaiseUnsupportedCapabilityError | Called by the RaiseUnsupportedCapabilitiesError method to compare the capabilities requested for an ExecuteSelect operation against those that the view supports. (Inherited from DataSourceView.) | .gif) | SaveViewState | Saves the changes to the view state for the ObjectDataSourceView object since the time when the page was posted back to the server. | .gif) | Select(DataSourceSelectArguments) | Retrieves data from the object that is identified by the TypeName property by calling the method that is identified by the SelectMethod property and passing any values in the SelectParameters collection. | .gif) | Select(DataSourceSelectArguments, DataSourceViewSelectCallback) | Gets a list of data asynchronously from the underlying data storage. (Inherited from DataSourceView.) | .gif) | ToString | Returns a string that represents the current object. (Inherited from Object.) | .gif) | TrackViewState | Causes the ObjectDataSourceView object to track changes to its view state so that the changes can be stored in the ViewState object for the control and persisted across requests for the same page. | .gif) | Update(IDictionary, IDictionary, IDictionary) | Performs an update operation by calling the method that is identified by the UpdateMethod property and using any parameters that are supplied in the keys, values, or oldValues collections. | .gif) | Update(IDictionary, IDictionary, IDictionary, DataSourceViewOperationCallback) | Performs an asynchronous update operation on the list of data that the DataSourceView object represents. (Inherited from DataSourceView.) | Top

Events

Explicit Interface Implementations

Remarks
The ObjectDataSourceView class is intended primarily to be used by data-bound controls, and not as a programmable object in page code. The ObjectDataSourceView class implements the data functionality for the ObjectDataSource control, including the Select, Update, Delete, and Insert operations, sorting, filtering, and management of settings kept in view state. A ObjectDataSourceView object is created for each instance of the ObjectDataSource class at run time. Calls to data operations of the instance of the ObjectDataSource class are handled by the instance of the ObjectDataSourceView object. Page developers do not access the instance of the ObjectDataSourceView class directly. Control developers can create custom data controls by extending the ObjectDataSource and ObjectDataSourceView classes. The ObjectDataSourceView class performs data operations by calling methods on business or data objects using reflection. At run time, the ObjectDataSource control creates an instance of the type that is identified by the TypeName property, and then calls the appropriate method for the data operation. The instantiated object is not cached in memory by the ObjectDataSourceView. The object is created and destroyed for every data method call. If the method is static (Shared in Visual Basic), an instance is not created but the data operation method is still called. The ObjectDataSourceView is not directly exposed to page developers by the ObjectDataSource control. Instead, the properties and methods of the ObjectDataSourceView are accessed through the ObjectDataSource. For example, the DeleteMethod of ObjectDataSourceView property is set by setting the DeleteMethod property of the ObjectDataSource. Retrieving DataThe most basic operation that a data source view performs is data retrieval from the underlying data storage using the Select method, which retrieves an IEnumerable collection of data items. The following data retrieval methods, properties, and events are implemented by the ObjectDataSourceView object and exposed directly by its ObjectDataSource control to page developers and other callers: Updating DataThe ObjectDataSourceView object supports data updates by calling a business or data object method that is identified by the UpdateMethod property. Data-bound controls that automatically perform updates, such as the GridView and DetailsView controls, pass their parameters in an IOrderedDictionary interface to the ObjectDataSourceView and the view object merges these parameters with any parameters that are found in the UpdateParameters collection. The following update methods, properties, and events are implemented by the ObjectDataSourceView and exposed directly by its ObjectDataSource control to page developers and other callers: Inserting DataThe ObjectDataSourceView object supports inserting new rows of data by calling a business or data object method that is identified by the InsertMethod property. Data-bound controls that automatically perform inserts, such as the GridView and DetailsView, pass their parameters in an IOrderedDictionary interface to the ObjectDataSourceView and the view object merges these parameters with any parameters that are found in the InsertParameters collection. The following insert methods, properties, and events are implemented by the ObjectDataSourceView and exposed directly by its ObjectDataSource control to page developers and other callers: Deleting DataThe ObjectDataSourceView object supports deleting data by calling a business or data object method that is identified by the DeleteMethod property. Data-bound controls that automatically perform deletes, such as the GridView and DetailsView, pass their parameters in an IOrderedDictionary interface to the ObjectDataSourceView and the view object merges these parameters with any parameters that are found in the DeleteParameters collection. The following delete methods, properties, and events are implemented by the ObjectDataSourceView and exposed directly by its ObjectDataSource control to page developers and other callers: Filtering and Sorting DataData retrieval is more powerful when you can filter the data dynamically. Filtering is supported only by the ObjectDataSource control if the Select method returns a DataTable or DataSet object. You can use the FilterExpression and FilterParameters properties to apply dynamic filtering to data retrieval. These properties are implemented by the ObjectDataSourceView object and exposed directly by its ObjectDataSource control to data-bound controls and other callers. You can sort the data that you retrieve with the ObjectDataSource by ordering the data in memory after it is retrieved. Sorting is supported only by the ObjectDataSource control if the Select method returns a DataTable or DataSet. The CanSort property always returns true, because the ObjectDataSourceView cannot determine what type is returned by the Select method without calling the method. The SortExpression property syntax is the same as for a DataView..::.Sort property. Tracking View State

Version Information
.NET FrameworkSupported in: 4, 3.5, 3.0, 2.0

Platforms
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role not supported), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Thread Safety
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also
|
Bibliothèque de classes .NET Framework ObjectDataSourceView, classe Prend en charge le contrôle ObjectDataSource et fournit une interface pour les contrôles liés aux données pour exécuter des opérations avec des objets de données et des objets métier.

Hiérarchie d'héritage
Espace de noms :
System.Web.UI.WebControls
Assembly :
System.Web (dans System.Web.dll)

Syntaxe
Public Class ObjectDataSourceView _
Inherits DataSourceView _
Implements IStateManager
public class ObjectDataSourceView : DataSourceView,
IStateManager
public ref class ObjectDataSourceView : public DataSourceView,
IStateManager
type ObjectDataSourceView =
class
inherit DataSourceView
interface IStateManager
end
Le type ObjectDataSourceView expose les membres suivants.

Constructeurs

Méthodes
|
| Nom | Description |
|---|
.gif) | CanExecute | Détermine si la commande spécifiée peut être exécutée. (Hérité de DataSourceView.) | .gif) | Delete(IDictionary, IDictionary) | Exécute une opération de suppression en appelant la méthode de l'objet métier qui est identifiée par la propriété DeleteMethod à l'aide des collections keys et oldValues spécifiées. | .gif) | Delete(IDictionary, IDictionary, DataSourceViewOperationCallback) | Exécute une opération de suppression asynchrone sur la liste des données que l'objet DataSourceView représente. (Hérité de DataSourceView.) | .gif) | Equals(Object) | Détermine si l'Object spécifié est égal à l'Object en cours. (Hérité de Object.) | .gif) | ExecuteCommand(String, IDictionary, IDictionary) | Exécute la commande spécifiée. (Hérité de DataSourceView.) | .gif) | ExecuteCommand(String, IDictionary, IDictionary, DataSourceViewOperationCallback) | Exécute la commande spécifiée. (Hérité de DataSourceView.) | .gif) | ExecuteDelete | Exécute une opération de suppression à l'aide de la méthode DeleteMethod et des collections keys et oldValues spécifiées. (Substitue DataSourceView..::.ExecuteDelete(IDictionary, IDictionary).) | .gif) | ExecuteInsert | Exécute une opération d'insertion en appelant la méthode de l'objet métier qui est identifiée par la propriété InsertMethod à l'aide de la collection values spécifiée. (Substitue DataSourceView..::.ExecuteInsert(IDictionary).) | .gif) | ExecuteSelect | Récupère des données de l'objet qui est identifié par la propriété TypeName en appelant la méthode qui est identifiée par la propriété SelectMethod et en passant toutes valeurs dans la collection SelectParameters. (Substitue DataSourceView..::.ExecuteSelect(DataSourceSelectArguments).) | .gif) | ExecuteUpdate | Exécute une opération de mise à jour en appelant la méthode qui est identifiée par la propriété UpdateMethod et à l'aide des paramètres fournis dans les collections keys, values ou oldValues. (Substitue DataSourceView..::.ExecuteUpdate(IDictionary, IDictionary, IDictionary).) | .gif) | Finalize | Autorise un objet à tenter de libérer des ressources et d'exécuter d'autres opérations de netto***ge avant qu'il ne soit récupéré par l'opération garbage collection. (Hérité de Object.) | .gif) | GetHashCode | Sert de fonction de hachage pour un type particulier. (Hérité de Object.) | .gif) | GetType | Obtient le Type de l'instance actuelle. (Hérité de Object.) | .gif) | Insert(IDictionary) | Exécute une opération d'insertion en appelant la méthode de l'objet métier qui est identifiée par la propriété InsertMethod à l'aide de la collection values spécifiée. | .gif) | Insert(IDictionary, DataSourceViewOperationCallback) | Exécute une opération d'insertion asynchrone dans la liste des données que l'objet DataSourceView représente. (Hérité de DataSourceView.) | .gif) | LoadViewState | Restaure l'état d'affichage enregistré précédemment pour la vue de source de données. | .gif) | MemberwiseClone | Crée une copie superficielle de l'objet Object actif. (Hérité de Object.) | .gif) | OnDataSourceViewChanged | Déclenche l'événement DataSourceViewChanged. (Hérité de DataSourceView.) | .gif) | OnDeleted | Déclenche l'événement Deleted après que l'objet ObjectDataSourceView a complété une opération de suppression. | .gif) | OnDeleting | Déclenche l'événement Deleting avant que l'objet ObjectDataSourceView ne tente une opération de suppression. | .gif) | OnFiltering | Déclenche l'événement Filtering avant que l'objet ObjectDataSourceView ne tente une opération de filtrage. | .gif) | OnInserted | Déclenche l'événement Inserted après que l'objet ObjectDataSourceView a complété une opération d'insertion. | .gif) | OnInserting | Déclenche l'événement Inserting avant que l'objet ObjectDataSourceView ne tente une opération d'insertion. | .gif) | OnObjectCreated | Déclenche l'événement ObjectCreated après que ObjectDataSourceView a créé une instance de l'objet identifié par la propriété TypeName. | .gif) | OnObjectCreating | Déclenche l'événement ObjectCreating avant que l'objet ObjectDataSourceView crée une instance d'un objet métier pour exécuter une opération de données. | .gif) | OnObjectDisposing | Déclenche l'événement ObjectDisposing avant que l'objet ObjectDataSourceView ignore un type instancié. | .gif) | OnSelected | Déclenche l'événement Selected après que l'objet ObjectDataSourceView a complété une opération de récupération. | .gif) | OnSelecting | Déclenche l'événement Selecting avant que l'objet ObjectDataSourceView ne tente une opération de récupération. | .gif) | OnUpdated | Déclenche l'événement Updated après que l'objet ObjectDataSourceView a complété une opération de mise à jour. | .gif) | OnUpdating | Déclenche l'événement Updating avant que l'objet ObjectDataSourceView ne tente une opération de mise à jour. | .gif) | RaiseUnsupportedCapabilityError | Appelé par la méthode RaiseUnsupportedCapabilitiesError pour comparer les fonctions demandées pour une opération ExecuteSelect à celles prises en charge par l'affichage. (Hérité de DataSourceView.) | .gif) | SaveViewState | Enregistre les modifications apportées à l'état d'affichage de l'objet ObjectDataSourceView depuis la publication de la page sur le serveur. | .gif) | Select(DataSourceSelectArguments) | Récupère des données de l'objet qui est identifié par la propriété TypeName en appelant la méthode qui est identifiée par la propriété SelectMethod et en passant toutes valeurs dans la collection SelectParameters. | .gif) | Select(DataSourceSelectArguments, DataSourceViewSelectCallback) | Obtient une liste de données en mode asynchrone provenant du stockage des données sous-jacent. (Hérité de DataSourceView.) | .gif) | ToString | Retourne une chaîne qui représente l'objet actuel. (Hérité de Object.) | .gif) | TrackViewState | Ainsi, l'objet ObjectDataSourceView effectue le suivi des modifications de son état d'affichage afin qu'elles puissent être stockées dans l'objet ViewState du contrôle et être rendues persistantes entre les requêtes de la même page. | .gif) | Update(IDictionary, IDictionary, IDictionary) | Exécute une opération de mise à jour en appelant la méthode qui est identifiée par la propriété UpdateMethod et à l'aide des paramètres fournis dans les collections keys, values ou oldValues. | .gif) | Update(IDictionary, IDictionary, IDictionary, DataSourceViewOperationCallback) | Exécute une opération de mise à jour asynchrone dans la liste des données que l'objet DataSourceView représente. (Hérité de DataSourceView.) | Début

Événements

Implémentations d'interface explicite

Notes
La classe ObjectDataSourceView est destinée à l'origine pour être utilisé par les contrôles liés aux données et non comme objet programmable dans le code de page. La classe ObjectDataSourceView implémente les fonctionnalités de données pour le contrôle ObjectDataSource, y compris les opérations Select, Update, Delete et Insert, les paramètres de tri, de filtrage et de gestion conservés dans l'état d'affichage. Un objet ObjectDataSourceView est créé pour chaque instance de la classe ObjectDataSource au moment de l'exécution. Les appels aux opérations de données de l'instance de la classe ObjectDataSource sont gérés par l'instance de l'objet ObjectDataSourceView. Les développeurs de pages n'accèdent pas à l'instance de la classe ObjectDataSourceView directement. Les développeurs de contrôles peuvent créer des contrôles de données personnalisés en étendant les classes ObjectDataSource et ObjectDataSourceView. La classe ObjectDataSourceView exécute des opérations de données en appelant des méthodes sur des objets de données ou de métier à l'aide de la réflexion. Au moment de l'exécution, le contrôle ObjectDataSource crée une instance du type qui est identifié par la propriété TypeName, puis appelle la méthode appropriée à l'opération de données. L'objet instancié n'est pas mis en cache dans la mémoire par ObjectDataSourceView. L'objet est créé et a détruit pour chaque appel de méthode de données. Si la méthode est static (Shared en Visual Basic), une instance n'est pas créée, mais la méthode d'opération de données est toujours appelée. ObjectDataSourceView n'est pas exposé directement aux développeurs de pages par le contrôle ObjectDataSource. À la place, les propriétés et les méthodes de ObjectDataSourceView sont accessibles via ObjectDataSource. Par exemple, le DeleteMethod de la propriété ObjectDataSourceView est défini en définissant la propriété DeleteMethod du ObjectDataSource. Récupération de donnéesL'opération la plus fondamentale qu'une vue de source de données exécute est la récupération de données du stockage de données sous-jacentes à l'aide de la méthode Select qui récupère une collection IEnumerable d'éléments de données. Les méthodes, propriétés et événements de récupération des données suivants sont implémentés par l'objet ObjectDataSourceView et sont exposés directement par son contrôle ObjectDataSource aux développeurs de pages et aux autres appelants : Mise à jour des donnéesL'objet ObjectDataSourceView prend en charge les mises à jour de données en appelant une méthode de l'objet métier ou de données qui est identifiée par la propriété UpdateMethod. Les contrôles liés aux données qui effectuent des mises à jour automatiquement, telles que les contrôles GridView et DetailsView, passent leurs paramètres dans une interface IOrderedDictionary au ObjectDataSourceView et l'objet de vue fusionne ces paramètres avec tous les paramètres qui sont localisés dans la collection UpdateParameters. Les méthodes, propriétés et événements de mise à jour suivants sont implémentés par ObjectDataSourceView et sont exposés directement par son contrôle ObjectDataSource aux développeurs de pages et aux autres appelants : Insertion de donnéesL'objet ObjectDataSourceView prend en charge les insertions de nouvelles lignes de données en appelant une méthode de l'objet métier ou de données qui est identifiée par la propriété InsertMethod. Les contrôles liés aux données qui effectuent des insertions automatiquement, telles que les GridView et DetailsView, passent leurs paramètres dans une interface IOrderedDictionary au ObjectDataSourceView et l'objet de vue fusionne ces paramètres avec tous les paramètres qui sont localisés dans la collection InsertParameters. Les méthodes, propriétés et événements d'insertion suivants sont implémentés par ObjectDataSourceView et sont exposés directement par son contrôle ObjectDataSource aux développeurs de pages et aux autres appelants : Suppression de donnéesL'objet ObjectDataSourceView prend en charge la suppression de données en appelant une méthode de l'objet métier ou de données qui est identifiée par la propriété DeleteMethod. Les contrôles liés aux données qui effectuent des suppressions automatiquement, telles que les GridView et DetailsView, passent leurs paramètres dans une interface IOrderedDictionary au ObjectDataSourceView et l'objet de vue fusionne ces paramètres avec tous les paramètres qui sont localisés dans la collection DeleteParameters. Les méthodes, propriétés et événements de suppression suivants sont implémentés par ObjectDataSourceView et sont exposés directement par son contrôle ObjectDataSource aux développeurs de pages et aux autres appelants : Filtrage et tri des donnéesLa récupération de données est plus puissante lorsque vous pouvez filtrer les données dynamiquement. Le filtrage est pris en charge uniquement par le contrôle ObjectDataSource si la méthode Select retourne un objet DataTable ou DataSet. Vous pouvez utiliser les propriétés FilterExpression et FilterParameters pour appliquer un filtrage dynamique à la récupération de données. Ces propriétés sont implémentées par l'objet ObjectDataSourceView et sont exposées directement par son contrôle ObjectDataSource aux contrôles liés aux données et aux autres appelants. Vous pouvez trier les données que vous récupérez avec ObjectDataSource en mettant les données en mémoire dans l'ordre après qu'elles ont été récupérées. Le tri est pris en charge uniquement par le contrôle ObjectDataSource si la méthode Select retourne un objet DataTable ou DataSet. La propriété CanSort retourne toujours true, car ObjectDataSourceView ne peut pas déterminer le type retourné par la méthode Select sans appeler la méthode. La syntaxe de la propriété SortExpression est la même que celle de la propriété DataView..::.Sort. Suivi de l'état d'affichage

Informations de version
.NET FrameworkPris en charge dans : 4, 3.5, 3.0, 2.0

Plateformes
Windows 7, Windows Vista SP1 ou ultérieur, Windows XP SP3, Windows XP SP2 Édition x64, Windows Server 2008 (installation minimale non prise en charge), Windows Server 2008 R2 (installation minimale prise en charge avec SP1 ou version ultérieure), Windows Server 2003 SP2
Le .NET Framework ne prend pas en charge toutes les versions de chaque plateforme. Pour obtenir la liste des versions prises en charge, consultez Configuration requise du .NET Framework.

Sécurité des threads
Tous les membres static ( Shared en Visual Basic) publics de ce type sont thread-safe. Il n'est pas garanti que les membres d'instance soient thread-safe.

Voir aussi
RéférenceAutres ressources
|