EntityQuery Class Breeze.sharp
Base class for all EntityQueries. This class is untyped and may be used when you need to create entity queries dynamically.
Inheritance Hierarchy

SystemObject
  Breeze.SharpEntityQuery
    Breeze.SharpEntityQueryT

Namespace: Breeze.Sharp
Assembly: Breeze.Sharp (in Breeze.Sharp.dll) Version: 0.6.0.5 (0.6.0.5)
Syntax

public abstract class EntityQuery : IEntityQuery, 
	IHasDataServiceQuery

The EntityQuery type exposes the following members.

Constructors

  NameDescription
Public methodEntityQuery
Initializes a new instance of the EntityQuery class
Protected methodEntityQuery(EntityQuery)
Initializes a new instance of the EntityQuery class
Top
Methods

  NameDescription
Protected methodCheckEm
Public methodClone
For internal use only.
Public methodStatic memberCreate
Creates a new typed EntityQuery for a specific type. Same as new EntityQuery{T} but can be used where the generic parameter 'T' cannot be specified.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodExecute(EntityManager)
Public methodExecute(CancellationToken, EntityManager)
Public methodExecuteLocally
Executes this query against the local cache. This method requires that an EntityManager has been previously specified via the [!:EntityQueryExtensions.With(EntityManager)] method.
Protected methodExpandNonGeneric
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodStatic memberFromT
The same as calling "new EntityQuery{T}.(resourceName)".
Public methodStatic memberFromT(String)
The same as calling "new EntityQuery{T}.(resourceName)".
Public methodStatic memberFromT(String, T)
This signature is intended to be use for queries that will return an anonymous type. An example instance of the anonymous type you want returned may be passed as the 2nd argument and will be used to materialize the result of the query.
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetResourcePath
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Protected methodUpdateFrom
Top
Properties

  NameDescription
Public propertyDataService
The DataService associated with this query.
Public propertyElementType
The element type of the IEnumerable being returned by this query.
Public propertyEntityManager
The EntityManager associated with this query.
Public propertyExpression
Public propertyJsonResultsAdapter
Public propertyQueryableType
The type being queried. This may not be the same as the type returned in the case of a 'Select'.
Public propertyQueryOptions
The QueryOptions associated with this query.
Public propertyResourceName
The resource name specified for this query.
Top
See Also

Reference