| RelatedPersonResourceHandlerQuery Method (ExpressionFuncEntityRelationship, Boolean, Guid, Int32, Int32, Int32) |
Query for substance administrations that aren't immunizations
Namespace:
SanteDB.Messaging.FHIR.Handlers
Assembly:
SanteDB.Messaging.FHIR (in SanteDB.Messaging.FHIR.dll) Version: 2.2.1
Syntax protected override IEnumerable<EntityRelationship> Query(
Expression<Func<EntityRelationship, bool>> query,
Guid queryId,
int offset,
int count,
out int totalResults
)
Protected Overrides Function Query (
query As Expression(Of Func(Of EntityRelationship, Boolean)),
queryId As Guid,
offset As Integer,
count As Integer,
<OutAttribute> ByRef totalResults As Integer
) As IEnumerable(Of EntityRelationship)
protected:
virtual IEnumerable<EntityRelationship^>^ Query(
Expression<Func<EntityRelationship^, bool>^>^ query,
Guid queryId,
int offset,
int count,
[OutAttribute] int% totalResults
) override
abstract Query :
query : Expression<Func<EntityRelationship, bool>> *
queryId : Guid *
offset : int *
count : int *
totalResults : int byref -> IEnumerable<EntityRelationship>
override Query :
query : Expression<Func<EntityRelationship, bool>> *
queryId : Guid *
offset : int *
count : int *
totalResults : int byref -> IEnumerable<EntityRelationship>
Parameters
- query
- Type: System.Linq.ExpressionsExpressionFuncEntityRelationship, Boolean
The query. - queryId
- Type: SystemGuid
The unique query state identifier - offset
- Type: SystemInt32
The offset. - count
- Type: SystemInt32
The count. - totalResults
- Type: SystemInt32
The total results.
Return Value
Type:
IEnumerableEntityRelationshipReturns the list of models which match the given parameters.
See Also