Mod method

Expr Mod(
  1. Expr exp
)

Implementation

Expr Mod(Expr exp) {
  return new BinaryExpression(this, "%", exp)..fieldType = dbType.Int;
}