 | IFreetextSearchServiceSearchEntityTEntity Method |
Perform the freetext search with term
Namespace: SanteDB.Core.ServicesAssembly: SanteDB.Core.Api (in SanteDB.Core.Api.dll) Version: 3.0.2081-alpha+b4ae72647f2cc271f89142f76fff26ad69e00f5a
SyntaxIQueryResultSet<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 EntityParameters
- term String
- The search term(s) provided by the user
Type Parameters
- TEntity
- The type of entity being searched
Return Value
IQueryResultSetTEntityThe entities which match the provided search
See Also