コード例 #1
0
        public override string BuildSql(SqlOptions sqlOptions)
        {
            var operand = _selectBuilder.BuildSql(((SqlOptions)sqlOptions.Clone()).Inlined());
            var command = sqlOptions.Command("EXISTS");

            return($"{command}({operand})");
        }