Chili.Opf3 Send comments on this topic.
PersistentQueriesProviders Property
See Also 
Chili.Opf3 Namespace > ObjectContext Class : PersistentQueriesProviders Property




Gets the list of IPersistentQueriesProviders. An IPersistentQueriesProvider allows to specify the insert, update and delete query statements directly. The framework is going to use these statements (instead of the automatically created ones) when doing inserts, updates and deletes on persistent objects.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property PersistentQueriesProviders As PersistentQueriesProvidersCollection
Visual Basic (Usage)Copy Code
Dim instance As ObjectContext
Dim value As PersistentQueriesProvidersCollection
 
value = instance.PersistentQueriesProviders
C# 
public PersistentQueriesProvidersCollection PersistentQueriesProviders {get;}
Managed Extensions for C++ 
public: __property PersistentQueriesProvidersCollection* get_PersistentQueriesProviders();
C++/CLI 
public:
property PersistentQueriesProvidersCollection^ PersistentQueriesProviders {
   PersistentQueriesProvidersCollection^ get();
}

Requirements

Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family

See Also