示例#1
0
        private static void WriteCondition(StringBuilder sb, InnerQuery query, TypedCondition condition)
        {
            var writer = new MsSqlExpressionWriter(sb, (x, variable) => WriteVariable(x, query, variable));

            SqlDatabaseWriterHelper.ProcessCondition(writer, condition);
        }
示例#2
0
        private static void WriteExpression(StringBuilder sb, SqlQuery query, TypedExpression expression)
        {
            var writer = new MsSqlExpressionWriter(sb, (x, variable) => WriteVariable(x, query, variable));

            SqlDatabaseWriterHelper.ProcessExpression(writer, expression);
        }