Orm |
The OrmQueryResultSetTResult type exposes the following members.
| Name | Description | |
|---|---|---|
| Any | Returns true if any results match | |
| AsStateful | ||
| Count | Return only the count of the objects | |
| Distinct | Get only distinct objects in the collection | |
| Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) | |
| Except | Do not include in the result set any objects which match the query | |
| Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) | |
| First | Retrieve the first result otherwise throw exception | |
| FirstOrDefault | Retrieve the first result otherwise return default | |
| GetEnumerator | Returns an enumerator that iterates through the collection. | |
| GetHashCode | Serves as the default hash function. (Inherited from Object) | |
| GetType | Gets the Type of the current instance. (Inherited from Object) | |
| Intersect(ExpressionFuncTResult, Boolean) | Intersect this result set with another | |
| Intersect(IQueryResultSet) | Intersect this set and other | |
| Intersect(IQueryResultSetTResult) | Intersect this result set with another | |
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) | |
| OfTypeTType | Flatten this object model to an IEnumerable of type TType | |
| OrderBy(Expression) | Order by the specified expression | |
| OrderByTKey(ExpressionFuncTResult, TKey) | Order the result set by the specified sort expression | |
| OrderByDescending(Expression) | Order by in descending order | |
| OrderByDescendingTKey(ExpressionFuncTResult, TKey) | Order the result set by descending | |
| SelectTReturn(Expression) | Select a single object from the object | |
| SelectTReturn(ExpressionFuncTResult, TReturn) | Select a single object from the object | |
| Single | Retrieve one (and only one) result otherwise throw exception | |
| SingleOrDefault | Retrieve one (and only one) otherwise return null if not found or throw if more than one | |
| Skip | Skip count results | |
| Take | Take only count results | |
| ToString | Returns a string that represents the current object. (Inherited from Object) | |
| Union(ExpressionFuncTResult, Boolean) | Union the results in this set with those matching query | |
| Union(IQueryResultSet) | Union this set and other | |
| Union(IQueryResultSetTResult) | Union the results in this set with those in the other | |
| Where(Expression) | Filter the result set where the specified condition matches | |
| Where(ExpressionFuncTResult, Boolean) | Filter the result set where the specified condition matches |
| Name | Description | |
|---|---|---|
| ApplyResultInstructions |
Apply result instructions
(Defined by QueryControlUtility) | |
| AsResultSet |
As result set
(Defined by ExtensionMethods) | |
| AsResultSetTResult |
As result set
(Defined by ExtensionMethods) | |
| ConvertTReturn |
The purpose of this method is to convert object me to TReturn. Why?
Because if you have an instance of Act that actually needs to be a SubstanceAdministration we can't just cast
so we have to copy.
(Defined by ExtensionMethods) | |
| ForEachTResult |
For each item in an enumerable
(Defined by ExtensionMethods) | |
| IsNullOrEmpty |
Returns true if the IList is null or has no elements
(Defined by ExtensionMethods) | |
| OrderByTResult, TKey |
Order result set
(Defined by ExtensionMethods) | |
| OrderByDescendingTResult, TKey |
Order result set
(Defined by ExtensionMethods) | |
| ToDictionaryIgnoringDuplicatesTResult, 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) | |
| ToDictionaryIgnoringDuplicatesTResult, 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) | |
| TransformResultSetTResult, TTo |
As a result set
(Defined by ExtensionMethods) | |
| WithControl |
With control parameter is used as a wrapper for _ parameters
(Defined by QueryFilterExtensions) |