QueryResultT Class Breeze.sharp
The actual result of any query that has an InlineCount specified. This class also implement IEnumerable{T} for the actual returned entities. If you want the InlineCount for any query you will need to cast the return type from the query into a QueryResult{T}).
Inheritance Hierarchy

SystemObject
  Breeze.SharpQueryResultT

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

public class QueryResult<T> : IEnumerable<T>, 
	IEnumerable, IHasInlineCount

Type Parameters

T

The QueryResultT type exposes the following members.

Constructors

  NameDescription
Public methodQueryResultT
Initializes a new instance of the QueryResultT class
Top
Methods

  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
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 methodGetEnumerator
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
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.)
Top
Extension Methods

  NameDescription
Public Extension MethodAllEqualTOverloaded.
Returns true if all items in a cached collection are equal.
(Defined by EnumerableFns.)
Public Extension MethodAllEqualT, U(FuncT, U)Overloaded.
Returns true if all items in a cached collection have the same projected value.
(Defined by EnumerableFns.)
Public Extension MethodDistinctT, TResult
Returns distinct elements from a sequence by using a specified selector function to project objects to compare.
(Defined by EnumerableFns.)
Public Extension MethodExceptT, TResult
Produces the set difference of two sequences by using a specified selector function to compare values.
(Defined by EnumerableFns.)
Public Extension MethodForEachT(ActionT)Overloaded.
Enumerate a cached collection performing the specified action on each item.
(Defined by EnumerableFns.)
Public Extension MethodForEachT(ActionT, Int32)Overloaded.
Enumerate an indexed collection in cache performing the specified action on each item.
(Defined by EnumerableFns.)
Public Extension MethodGetAggregateHashCode
Returns a hashcode for a collection that uses a similar algorithm to that used by the .NET Tuple class. Order matters.
(Defined by EnumerableFns.)
Public Extension MethodIndexOfT
Returns the index of the first item in the sequence matching a condition, or -1 if no match found.
(Defined by EnumerableFns.)
Public Extension MethodIntersectT, TResult
Produces the set intersection of two sequences by using a specified selector function to project objects to compare.
(Defined by EnumerableFns.)
Public Extension MethodToAggregateString
Concatenates the string version of each element in a collection using the delimiter provided.
(Defined by EnumerableFns.)
Public Extension MethodToHashSetT (Defined by EnumerableFns.)
Public Extension MethodUnionT, TResult
Produces the set union of two sequences by using a specified selector function to project objects to compare.
(Defined by EnumerableFns.)
Top
Properties

  NameDescription
Public propertyInlineCount
Public propertyResults
Top
See Also

Reference