Click or drag to resize

ResourceHandlerBaseTFhirResource, TModelQueryInternal Method

Execute the specified query

Namespace: SanteDB.Messaging.FHIR.Handlers
Assembly: SanteDB.Messaging.FHIR (in SanteDB.Messaging.FHIR.dll) Version: 3.0.2081-alpha+4e2291b954f20d29cba15591683155ca851b26eb
Syntax
protected abstract IQueryResultSet<TModel> QueryInternal(
	Expression<Func<TModel, bool>> query,
	NameValueCollection fhirParameters,
	NameValueCollection hdsiParameters
)

Parameters

query  ExpressionFuncTModel, Boolean
The query filter
fhirParameters  NameValueCollection

[Missing <param name="fhirParameters"/> documentation for "M:SanteDB.Messaging.FHIR.Handlers.ResourceHandlerBase`2.QueryInternal(System.Linq.Expressions.Expression{System.Func{`1,System.Boolean}},System.Collections.Specialized.NameValueCollection,System.Collections.Specialized.NameValueCollection)"]

hdsiParameters  NameValueCollection

[Missing <param name="hdsiParameters"/> documentation for "M:SanteDB.Messaging.FHIR.Handlers.ResourceHandlerBase`2.QueryInternal(System.Linq.Expressions.Expression{System.Func{`1,System.Boolean}},System.Collections.Specialized.NameValueCollection,System.Collections.Specialized.NameValueCollection)"]

Return Value

IQueryResultSetTModel
Returns the list of models which match the given parameters.
See Also