Esempio n. 1
0
 private void Build_RestoreStatement(
     SqlContainer sqlContainer,
     SqlCommand sqlCommand,
     StringBuilder commandText,
     int?commandCount)
 {
     commandText.Append(CommandText
                        .Params(SqlWhereCollection.Sql(
                                    sqlContainer, sqlCommand, TableType, commandCount)));
 }
Esempio n. 2
0
 private void Build_DeleteStatement(
     SqlContainer sqlContainer,
     SqlCommand sqlCommand,
     StringBuilder commandText,
     int?commandCount)
 {
     commandText.Append(CommandText
                        .Params(SqlWhereCollection.Sql(
                                    sqlContainer: sqlContainer,
                                    sqlCommand: sqlCommand,
                                    commandCount: commandCount)));
 }
 private void Build_RestoreStatement(
     ISqlObjectFactory factory,
     SqlContainer sqlContainer,
     ISqlCommand sqlCommand,
     StringBuilder commandText,
     int?commandCount)
 {
     commandText.Append(factory.SqlCommandText.CreateRestore(
                            template: CommandText
                            .Params(SqlWhereCollection.Sql(
                                        factory: factory,
                                        sqlContainer: sqlContainer,
                                        sqlCommand: sqlCommand,
                                        commandCount: commandCount))));
 }