DevForce Help Reference
Execute(IEntityQuery) Method
Example 


Execute the query and return untyped results.
Syntax
'Declaration
 
<ExtensionAttribute()>
Public Overloads Shared Function Execute( _
   ByVal query As IEntityQuery _
) As IEnumerable
'Usage
 
Dim query As IEntityQuery
Dim value As IEnumerable
 
value = EntityQueryExtensions.Execute(query)
[Extension()]
public static IEnumerable Execute( 
   IEntityQuery query
)

Parameters

query
Remarks
If you call this method in a Silverlight or Windows style application the query must use a cache-only query strategy, since synchronous calls to the EntityServer are not supported in these environments.
Example
DomainModelEntityManager mgr = new DomainModelEntityManager();

var query = mgr.Customers.Where(c => c.Country == "UK");
var customers = query.Execute();
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

EntityQueryExtensions Class
EntityQueryExtensions Members
Overload List
ExecuteQuery(IEntityQuery) Method

Send Feedback