Ejemplo n.º 1
0
        private static void GenerateOutputClause <TEntity, TParams, TResult>(IInsertOrUpdateCommand <TEntity, TParams, TResult> command, IQueryMetadata metadata, StringBuilder commandText)
        {
            // Generate 'output ...'
            commandText.Append("output ");

            new MemberAccessExpressionVisitor(
                n => commandText.AppendFormat("inserted.{0} as {1}, ", Quoter.QuoteName(metadata.ColumnMappings[n.Member.Name]), n.Member.Name)
                ).Visit(command.Output);

            commandText.Length -= 2; // Remove last comma

            commandText.AppendLine();
        }
Ejemplo n.º 2
0
        public string GenerateSqlCommand <TEntity, TParams, TResult>(IInsertOrUpdateCommand <TEntity, TParams, TResult> command, IQueryMetadata metadata)
        {
            var commandText = new StringBuilder();

            if (command.Update != null && command.Insert != null)
            {
                // Generate 'merge ...'
                commandText.AppendFormat("merge {0} with (holdlock) as T using ( select ", Quoter.QuoteTableName(metadata.TableSchema, metadata.TableName));

                var columns = command.ConflictColumns.ToColumnList();

                var parametersPredicateParameter = command.Insert.Parameters[0];
                var visitedMembers = new HashSet <MemberInfo>();
                new NewObjectExpressionVisitor(
                    m =>
                {
                    var assignment = m as MemberAssignment;
                    if (assignment != null && columns.Contains(m.Member))
                    {
                        new MemberAccessExpressionVisitor(
                            ma =>
                        {
                            if (ma.Expression == parametersPredicateParameter && visitedMembers.Add(ma.Member))
                            {
                                commandText.AppendFormat("@{0} as {1}, ", metadata.GetParameterName(ma), Quoter.QuoteName(ma.Member.Name));
                            }
                        }
                            ).Visit(assignment.Expression);
                    }
                }
                    ).Visit(command.Insert);

                commandText.Length -= 2; // Remove last comma
                commandText.AppendLine(" ) as S");


                // Generate 'on (S.A = T.A and ...'
                commandText.Append("on (");

                new NewObjectExpressionVisitor(
                    m =>
                {
                    var assignment = m as MemberAssignment;
                    if (assignment != null && columns.Contains(m.Member))
                    {
                        commandText.AppendFormat("T.{0} = ", Quoter.QuoteName(metadata.ColumnMappings[m.Member.Name]));

                        new SqlCodeGeneratorExpressionVisitor(commandText, new Dictionary <Expression, ParameterSyntaxType>
                        {
                            { command.Insert.Parameters[0], ParameterSyntaxType.Source },
                        }, metadata, Quoter).Visit(assignment.Expression);

                        commandText.Append(" and ");
                    }
                }
                    ).Visit(command.Insert);

                commandText.Length -= 5; // Remove last 'and'
                commandText.AppendLine(")");


                // Generate 'when matched then ...'
                commandText.Append("when matched");

                if (command.UpdatePredicate != null)
                {
                    commandText.Append(" and (");
                    command.UpdatePredicate.GenerateWhereClause(commandText, Quoter, metadata, ParameterSyntaxType.Target);
                    commandText.Append(")");
                }

                commandText.AppendLine(" then update set ");
                command.Update.GenerateUpdateSetList(commandText, Quoter, metadata, ParameterSyntaxType.Target);

                // Generate 'when not matched then ...'
                commandText.AppendLine("when not matched then insert ");
            }
            else if (command.Insert != null)
            {
                // Generate 'insert into ...'
                commandText.AppendFormat("insert into {0} ", Quoter.QuoteTableName(metadata.TableSchema, metadata.TableName));
            }
            else if (command.Update != null)
            {
                // Generate 'update ...'
                commandText.AppendFormat("update {0} set ", Quoter.QuoteTableName(metadata.TableSchema, metadata.TableName));
                commandText.AppendLine();
                command.Update.GenerateUpdateSetList(commandText, Quoter, metadata, ParameterSyntaxType.None);

                if (command.Output != null)
                {
                    GenerateOutputClause(command, metadata, commandText);
                }

                if (command.UpdatePredicate != null)
                {
                    commandText.Append("where ");
                    command.UpdatePredicate.GenerateWhereClause(commandText, Quoter, metadata, ParameterSyntaxType.None);
                    commandText.AppendLine();
                }
            }

            if (command.Insert != null)
            {
                command.Insert.GenerateInsertColumnList(commandText, Quoter, metadata);

                if (command.Output != null && command.Update == null)
                {
                    GenerateOutputClause(command, metadata, commandText);
                }

                command.Insert.GenerateInsertValueList(commandText, Quoter, metadata);
            }

            if (command.Output != null && command.Update != null && command.Insert != null)
            {
                GenerateOutputClause(command, metadata, commandText);
            }

            commandText.Append(';');

            return(commandText.ToString());
        }
Ejemplo n.º 3
0
        public string GenerateSqlCommand <TEntity, TParams, TResult>(IInsertOrUpdateCommand <TEntity, TParams, TResult> command, IQueryMetadata metadata)
        {
            var commandText = new StringBuilder();

            if (command.Insert != null)
            {
                // Generate 'insert...'
                commandText.AppendFormat("insert into {0} as T ", Quoter.QuoteTableName(metadata.TableSchema, metadata.TableName));

                command.Insert.GenerateInsertColumnList(commandText, Quoter, metadata);

                command.Insert.GenerateInsertValueList(commandText, Quoter, metadata);

                if (command.Update != null)
                {
                    // Generate 'on conflict (...) update ...'
                    commandText.Append("on conflict (");

                    var columns = command.ConflictColumns.ToColumnList();
                    foreach (var column in columns)
                    {
                        commandText
                        .Append(Quoter.QuoteName(metadata.ColumnMappings[column.Name]))
                        .Append(", ");
                    }

                    commandText.Length -= 2; // Remove last comma
                    commandText.AppendLine(") do update set ");
                }
            }
            else if (command.Update != null)
            {
                // Generate 'update ...'
                commandText.AppendFormat("update {0} as T set ", Quoter.QuoteTableName(metadata.TableSchema, metadata.TableName));
                commandText.AppendLine();
            }

            if (command.Update != null)
            {
                command.Update.GenerateUpdateSetList(commandText, Quoter, metadata, ParameterSyntaxType.Target);

                if (command.UpdatePredicate != null)
                {
                    commandText.Append("where ");
                    command.UpdatePredicate.GenerateWhereClause(commandText, Quoter, metadata, ParameterSyntaxType.Target);
                    commandText.AppendLine();
                }
            }

            if (command.Output != null)
            {
                // Generate 'returning ...'
                commandText.Append("returning ");

                new MemberAccessExpressionVisitor(
                    n => commandText.AppendFormat("{0} as {1}, ", Quoter.QuoteName(metadata.ColumnMappings[n.Member.Name]), n.Member.Name)
                    ).Visit(command.Output);

                commandText.Length -= 2; // Remove last comma

                commandText.AppendLine();
            }

            return(commandText.ToString());
        }