Click or drag to resize

IOrderableQueryResultSetTData Interface

A IQueryResultSetTData which can be ordered

Namespace: SanteDB.Core.Model.Query
Assembly: SanteDB.Core.Model (in SanteDB.Core.Model.dll) Version: 3.0.2081-alpha+0a330d5f5a5d3cb3e6e945ef530e94ac5671b49c
Syntax
public interface IOrderableQueryResultSet<TData> : IQueryResultSet<TData>, 
	IQueryResultSet, IEnumerable, IEnumerable<TData>, IOrderableQueryResultSet

Type Parameters

TData

[Missing <typeparam name="TData"/> documentation for "T:SanteDB.Core.Model.Query.IOrderableQueryResultSet`1"]

The IOrderableQueryResultSetTData type exposes the following members.

Properties
 NameDescription
Public propertyElementType Gets the types of elements which can be filtered and/or manipulated in the collection
(Inherited from IQueryResultSet)
Top
Methods
 NameDescription
Public methodAny Returns true if any results match
(Inherited from IQueryResultSet)
Public methodAsStateful Get the result set as a stateful query
(Inherited from IQueryResultSetTData)
Public methodCount Return only the count of the objects
(Inherited from IQueryResultSet)
Public methodDistinct Get only distinct objects in the collection
(Inherited from IQueryResultSetTData)
Public methodExcept Do not include in the result set any objects which match the query
(Inherited from IQueryResultSetTData)
Public methodFirst Retrieve the first result otherwise throw exception
(Inherited from IQueryResultSetTData)
Public methodFirstOrDefault Retrieve the first result otherwise return default
(Inherited from IQueryResultSetTData)
Public methodGetEnumeratorReturns an enumerator that iterates through a collection.
(Inherited from IEnumerable)
Public methodIntersect(ExpressionFuncTData, Boolean) Intersect this result set with another
(Inherited from IQueryResultSetTData)
Public methodIntersect(IQueryResultSet) Intersect this set and other
(Inherited from IQueryResultSet)
Public methodIntersect(IQueryResultSetTData) Intersect this result set with another
(Inherited from IQueryResultSetTData)
Public methodOfTypeTType Flatten this object model to an IEnumerable of type TType
(Inherited from IQueryResultSet)
Public methodOrderBy(Expression) Order by the specified expression
(Inherited from IOrderableQueryResultSet)
Public methodOrderByTKey(ExpressionFuncTData, TKey) Order the result set by the specified sort expression
Public methodOrderByDescending(Expression) Order by in descending order
(Inherited from IOrderableQueryResultSet)
Public methodOrderByDescendingTKey(ExpressionFuncTData, TKey) Order the result set by descending
Public methodSelectTReturn(Expression) Select a single object from the object
(Inherited from IQueryResultSet)
Public methodSelectTReturn(ExpressionFuncTData, TReturn) Select a single object from the object
(Inherited from IQueryResultSetTData)
Public methodSingle Retrieve one (and only one) result otherwise throw exception
(Inherited from IQueryResultSetTData)
Public methodSingleOrDefault Retrieve one (and only one) otherwise return null if not found or throw if more than one
(Inherited from IQueryResultSetTData)
Public methodSkip Skip count results
(Inherited from IQueryResultSetTData)
Public methodTake Take only count results
(Inherited from IQueryResultSetTData)
Public methodUnion(ExpressionFuncTData, Boolean) Union the results in this set with those matching query
(Inherited from IQueryResultSetTData)
Public methodUnion(IQueryResultSet) Union this set and other
(Inherited from IQueryResultSet)
Public methodUnion(IQueryResultSetTData) Union the results in this set with those in the other
(Inherited from IQueryResultSetTData)
Public methodWhere(Expression) Filter the result set where the specified condition matches
(Inherited from IQueryResultSet)
Public methodWhere(ExpressionFuncTData, Boolean) Filter the result set where the specified condition matches
(Inherited from IQueryResultSetTData)
Top
Extension Methods
 NameDescription
Public Extension MethodApplyResultInstructions Apply result instructions
(Defined by QueryControlUtility)
Public Extension MethodAsResultSet As result set
(Defined by ExtensionMethods)
Public Extension MethodAsResultSetTData As result set
(Defined by ExtensionMethods)
Public Extension MethodForEachTData For each item in an enumerable
(Defined by ExtensionMethods)
Public Extension MethodIsNullOrEmpty Returns true if the IList is null or has no elements
(Defined by ExtensionMethods)
Public Extension MethodOrderByTData, TKey Order result set
(Defined by ExtensionMethods)
Public Extension MethodOrderByDescendingTData, TKey Order result set
(Defined by ExtensionMethods)
Public Extension MethodToDictionaryIgnoringDuplicatesTData, TKey Creates a DictionaryTKey, TValue from an IEnumerableT according to specified key selector function. Diplicate keys will not be added to the dictionary.
(Defined by ExtensionMethods)
Public Extension MethodToDictionaryIgnoringDuplicatesTData, TKey, TElement Creates a DictionaryTKey, TValue from an IEnumerableT according to specified key selector and element selector functions. Diplicate keys will not be added to the dictionary.
(Defined by ExtensionMethods)
Public Extension MethodTransformResultSetTData, TTo As a result set
(Defined by ExtensionMethods)
Top
See Also