| IFreetextSearchServiceSearchEntityTEntity Method |
Perform the freetext search with term
Namespace:
SanteDB.Core.Services
Assembly:
SanteDB.Core.Api (in SanteDB.Core.Api.dll) Version: 3.0.481-alpha
Syntax IQueryResultSet<TEntity> SearchEntity<TEntity>(
string[] term
)
where TEntity : new(), Entity
Function SearchEntity(Of TEntity As {New, Entity}) (
term As String()
) As IQueryResultSet(Of TEntity)
generic<typename TEntity>
where TEntity : gcnew(), Entity
IQueryResultSet<TEntity>^ SearchEntity(
array<String^>^ term
)
abstract SearchEntity :
term : string[] -> IQueryResultSet<'TEntity> when 'TEntity : new() and Entity
Parameters
- term
- Type: SystemString
The search term(s) provided by the user
Type Parameters
- TEntity
- The type of entity being searched
Return Value
Type:
IQueryResultSetTEntityThe entities which match the provided search
See Also