| ResourceHandlerBaseTFhirResource, TModelQuery Method (ExpressionFuncTModel, Boolean, Guid, Int32, Int32, Int32) |
Queries the specified query.
Namespace:
SanteDB.Messaging.FHIR.Handlers
Assembly:
SanteDB.Messaging.FHIR (in SanteDB.Messaging.FHIR.dll) Version: 2.2.1
Syntax protected abstract IEnumerable<TModel> Query(
Expression<Func<TModel, bool>> query,
Guid queryId,
int offset,
int count,
out int totalResults
)
Protected MustOverride Function Query (
query As Expression(Of Func(Of TModel, Boolean)),
queryId As Guid,
offset As Integer,
count As Integer,
<OutAttribute> ByRef totalResults As Integer
) As IEnumerable(Of TModel)
protected:
virtual IEnumerable<TModel>^ Query(
Expression<Func<TModel, bool>^>^ query,
Guid queryId,
int offset,
int count,
[OutAttribute] int% totalResults
) abstract
abstract Query :
query : Expression<Func<'TModel, bool>> *
queryId : Guid *
offset : int *
count : int *
totalResults : int byref -> IEnumerable<'TModel>
Parameters
- query
- Type: System.Linq.ExpressionsExpressionFuncTModel, Boolean
The query. - queryId
- Type: SystemGuid
[Missing <param name="queryId"/> documentation for "M:SanteDB.Messaging.FHIR.Handlers.ResourceHandlerBase`2.Query(System.Linq.Expressions.Expression{System.Func{`1,System.Boolean}},System.Guid,System.Int32,System.Int32,System.Int32@)"]
- offset
- Type: SystemInt32
The offset. - count
- Type: SystemInt32
The count. - totalResults
- Type: SystemInt32
The total results.
Return Value
Type:
IEnumerableTModelReturns the list of models which match the given parameters.
See Also