IdeaBlade DevForce 2010 Help Reference
QueriedEntities Property
See Also  Send Feedback
IdeaBlade.EntityModel.Server Assembly > IdeaBlade.EntityModel.Server Namespace > EntityServerQueryInterceptor Class : QueriedEntities Property



Returns a list of the entities queried. This property is only available after the query has executed.

Syntax

Visual Basic (Declaration) 
Protected ReadOnly Property QueriedEntities As List(Of Object)
Visual Basic (Usage)Copy Code
Dim instance As EntityServerQueryInterceptor
Dim value As List(Of Object)
 
value = instance.QueriedEntities
C# 
protected List<object> QueriedEntities {get;}
C++/CLI 
protected:
property List<Object^>^ QueriedEntities {
   List<Object^>^ get();
}

Remarks

The collection will be empty if your query returns a non-entity scalar type or instances of complex types (as from a stored procedure), POCO types, or an anonymous type containing only primitive property types. If the anonymous type returns entity types as properties of the anonymous type these entities will be returned.

Both queried and related entities retrieved as a result of the query will be returned.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2013 All Rights Reserved.