Options that allow queries that will be run against cache to share the same semantics as the corresponding
query against the Entity Framework and the backend database. Linq To Objects (CLR) and remote service queries do
not automatically share the same semantics. This class allows Breeze queries against the EntityManager's cache (Linq to Objects queries)
to be interpreted like they will be against the remote service.
Inheritance Hierarchy
Breeze.SharpCacheQueryOptions
Namespace: Breeze.Sharp
Assembly: Breeze.Sharp (in Breeze.Sharp.dll) Version: 0.6.0.5 (0.6.0.5)
Syntax
The CacheQueryOptions type exposes the following members.
Constructors
Name | Description | |
---|---|---|
CacheQueryOptions |
Ctor.
|
Methods
Name | Description | |
---|---|---|
Equals |
See Equals(Object).
(Overrides ObjectEquals(Object).) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode |
See GetHashCode.
(Overrides ObjectGetHashCode.) | |
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.) |
Operators
Name | Description | |
---|---|---|
Equality |
Operator == overload.
| |
Inequality |
Operator != overload.
|
Fields
Name | Description | |
---|---|---|
DefaultSqlServerCompatibility |
Options that represents a default SQL Server installations and settings.
| |
None |
To be used when standard CLR semantics should be used and no compatibility with the backend datastore is needed.
|
Properties
Name | Description | |
---|---|---|
Default |
The default value for CacheQueryOptions. May be modified and will affect all of the standard QueryStrategies.
| |
GuidOrdering |
Determines whether to use standard CLR semantics for sorting Guids or the SQL Server default mechanism
in which only the last 6 bytes of a value are evaluated.
| |
IsDefault |
Is this instance the default instance.
| |
StringComparison |
Determines case sensitivity of Cache queries.
| |
UseSql92CompliantStringComparison |
Determines whether String comparisons are performed according to the ANSI SQL92 specification. In particular,
the ANSI standard requires padding for the character strings used in comparisons so that their lengths match before comparing them.
|
See Also