I would suggest using arguments when you want to specify the values required by the execution, for example:
bin/console vendor:delete-entity 120
but not
bin/console vendor:delete-entity --id=120
You can use the "Parameters" if you want to change the default execution script, for example:
bin/console vendor:delete-entity 120 --dump-sql
or
bin/console vendor:bulk-create something
source share