Base class for all EntityQueries. This class is untyped and may be used
when you need to create entity queries dynamically.
Inheritance Hierarchy
Breeze.SharpEntityQuery
Breeze.SharpEntityQueryT
Namespace: Breeze.Sharp
Assembly: Breeze.Sharp (in Breeze.Sharp.dll) Version: 0.6.0.5 (0.6.0.5)
Syntax
The EntityQuery type exposes the following members.
Constructors
Name | Description | |
---|---|---|
EntityQuery | Initializes a new instance of the EntityQuery class | |
EntityQuery(EntityQuery) | Initializes a new instance of the EntityQuery class |
Methods
Name | Description | |
---|---|---|
CheckEm | ||
Clone |
For internal use only.
| |
Create |
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.
| |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Execute(EntityManager) |
Executes this query against a remote service.
This method requires that an EntityManager has been previously specified via the
[!:EntityQueryExtensions.With(EntityManager)] method.
ExecuteQueryT(EntityQueryT) | |
Execute(CancellationToken, EntityManager) |
Executes this query against a remote service.
This method requires that an EntityManager has been previously specified via the
[!:EntityQueryExtensions.With(EntityManager)] method.
ExecuteQueryT(EntityQueryT) | |
ExecuteLocally |
Executes this query against the local cache.
This method requires that an EntityManager has been previously specified via the
[!:EntityQueryExtensions.With(EntityManager)] method.
| |
ExpandNonGeneric | ||
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
FromT |
The same as calling "new EntityQuery{T}.(resourceName)".
| |
FromT(String) |
The same as calling "new EntityQuery{T}.(resourceName)".
| |
FromT(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.
| |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetResourcePath | ||
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) | |
UpdateFrom |
Properties
Name | Description | |
---|---|---|
DataService |
The DataService associated with this query.
| |
ElementType |
The element type of the IEnumerable being returned by this query.
| |
EntityManager |
The EntityManager associated with this query.
| |
Expression | ||
JsonResultsAdapter | ||
QueryableType |
The type being queried. This may not be the same as the type returned in the case
of a 'Select'.
| |
QueryOptions |
The QueryOptions associated with this query.
| |
ResourceName |
The resource name specified for this query.
|
See Also