| EntityResourceHandlerQuery Method (NameValueCollection, Int32, Int32, Int32) |
Queries for an entity.
Namespace:
SanteDB.Rest.HDSI.Resources
Assembly:
SanteDB.Rest.HDSI (in SanteDB.Rest.HDSI.dll) Version: 2.2.1
Syntax public override IEnumerable<Object> Query(
NameValueCollection queryParameters,
int offset,
int count,
out int totalCount
)
Public Overrides Function Query (
queryParameters As NameValueCollection,
offset As Integer,
count As Integer,
<OutAttribute> ByRef totalCount As Integer
) As IEnumerable(Of Object)
public:
virtual IEnumerable<Object^>^ Query(
NameValueCollection^ queryParameters,
int offset,
int count,
[OutAttribute] int% totalCount
) override
abstract Query :
queryParameters : NameValueCollection *
offset : int *
count : int *
totalCount : int byref -> IEnumerable<Object>
override Query :
queryParameters : NameValueCollection *
offset : int *
count : int *
totalCount : int byref -> IEnumerable<Object>
Parameters
- queryParameters
- Type: SanteDB.Core.Model.QueryNameValueCollection
The query parameters to use to search for the entity. - offset
- Type: SystemInt32
The offset of the query. - count
- Type: SystemInt32
The count of the query. - totalCount
- Type: SystemInt32
The total count of the query.
Return Value
Type:
IEnumerableObjectReturns a list of entities.
Implements
IApiResourceHandlerQuery(NameValueCollection, Int32, Int32, Int32)See Also