The EventQueryType property is used to indicate whether the connector should dynamically generate a query to retrieve events from the event table or use its built-in query. For the dynamically generated query, the connector maps its event structure to the columns in the event table. The order of the data in the table columns is very important.
If the value in the EventQueryType is Fixed (as a string), the default query is executed. If the value is set to Dynamic (as a string), a new query is built by getting the column names from the table that is specified in the EventTableName property.
The event table column names can change but the order and data type of the columns must remain the same as specified in the event table creation section. The EventOrderBy property will be appended to either the default or the dynamically generated query.
If the EventQueryType property is not added or it contains no value, it is defaulted to Fixed.
Default value: Fixed (as a string)
Possible values: Fixed or Dynamic