Click or drag to resize
QueryCollectionT Class

Note: This API is now obsolete.

Contains query objects.
Inheritance Hierarchy
SystemObject
  Intuit.Ipp.LinqExtender.CollectionQueryCollectionT

Namespace:  Intuit.Ipp.LinqExtender.Collection
Assembly:  Intuit.Ipp.LinqExtender (in Intuit.Ipp.LinqExtender.dll) Version: 4.0.0.0 (4.0.0.0)
Syntax
C#
[ObsoleteAttribute("Deprecated. Use QueryService->ExecuteIdsQuery")]
public class QueryCollection<T> : IModifiableCollection<T>, 
	IMethodCall<T>, IMethodCall, IModifiableCollection

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "T:Intuit.Ipp.LinqExtender.Collection.QueryCollection`1"]

The QueryCollectionT type exposes the following members.

Constructors
  NameDescription
Public methodQueryCollectionT
Creates a new instance of QueryCollectionT class and initialized teh classgenerator.
Top
Properties
  NameDescription
Public propertyItem
Gets/Sets a query object implementation for an index.
Public propertyItems
Gets a list of query item.
Top
Methods
  NameDescription
Public methodAdd
Adds a new item to the collection.
Public methodAddRange(IEnumerableT)
Adds a range of items to the collection.
Public methodAddRange(IEnumerableT, Boolean)
Adds items to the main collection and does a sort operation if any orderby is used in query.
Public methodAny
returnts true if the sequece contains any element.
Public methodClear
Clears out the collection.
Public methodCount
returns the count of the sequence
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 methodFirst
returns the first item of the sequence
Public methodFirstOrDefault
Returns first item or default value if empty.
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodLast
returns the last item of the sequence.
Public methodLastOrDefault
Returns the last item or a default value.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodRemove
Marks a item to be removed from the colleciton.
Public methodSingle
returns only element of the sequece , throws exception if there is no element in the sequece
Public methodSingleOrDefault
Returns a single item or default value if empty.
Public methodSort
Sorts the collection, using the orderby clause used in query.
Public methodSort(IComparerQueryObjectT)
Sorts the collection with the provided comparer.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Extension Methods
  NameDescription
Public Extension MethodCopyRecursive
recursively copies object properties to destination.
(Defined by Utility.)
Top
See Also