Query Result Scoring Provider
Summary
Operations
Operation
Response/Return
Input/Parameter
Description
Implementations
Example Implementation
/// Example Implementation
using SanteDB.Core.Services;
/// Other usings here
public class MyQueryScoringService : SanteDB.Core.Services.IQueryScoringService {
public String ServiceName => "My own IQueryScoringService service";
/// <summary>
/// Requests that the matching operation score the specified series of results
/// </summary>
public IEnumerable<IQueryResultScore<T>> Score<T>(Expression<Func<T,Boolean>> filter,IEnumerable<T> results){
throw new System.NotImplementedException();
}
}References
Last updated
Was this helpful?