public virtual bool AddCommand(
            [NotNull] ModificationCommandBatch modificationCommandBatch,
            [NotNull] ModificationCommand modificationCommand)
        {
            Check.NotNull(modificationCommandBatch, nameof(modificationCommandBatch));
            Check.NotNull(modificationCommand, nameof(modificationCommand));

            return(modificationCommandBatch.AddCommand(modificationCommand));
        }
        public virtual bool AddCommand(
            [NotNull] ModificationCommandBatch modificationCommandBatch,
            [NotNull] ModificationCommand modificationCommand)
        {
            Check.NotNull(modificationCommandBatch, "modificationCommandBatch");
            Check.NotNull(modificationCommand, "modificationCommand");

            return(modificationCommandBatch.AddCommand(modificationCommand, _sqlGenerator));
        }