MachineLearningProviderQueryAsync Method |
Perform a natural language query.
Namespace:
Dundas.BI.MachineLearning
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax public abstract Task<QueryResponse> QueryAsync(
string queryText,
QueryContext context
)
Public MustOverride Function QueryAsync (
queryText As String,
context As QueryContext
) As Task(Of QueryResponse)
public:
virtual Task<QueryResponse^>^ QueryAsync(
String^ queryText,
QueryContext^ context
) abstract
abstract QueryAsync :
queryText : string *
context : QueryContext -> Task<QueryResponse>
Parameters
- queryText
- Type: SystemString
The natural language query to make. - context
- Type: Dundas.BI.MachineLearningQueryContext
The context at which the query is in.
Return Value
Type:
TaskQueryResponseA response to the query.
See Also