equals method

Expression<bool> equals(
  1. D compare
)

Whether this column is equal to the given value, which must have a fitting type. The compare value will be written as a variable using prepared statements, so there is no risk of an SQL-injection.

Implementation

Expression<bool> equals(D compare) =>
    _Comparison.equal(this, Variable<D>(compare));