matchExp method

Expression<bool> matchExp(
  1. Expression<String> expression
)

Whether this table contains a row matching the fts5 query given as an sql expression.

See match for more details.

Implementation

Expression<bool> matchExp(Expression<String> expression) {
  return _Fts5MatchExpression(_tableReference, expression);
}