Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Currently the database command can be used to upgrade the database to the expected schema.

Usage: AMANA.SmartTaxBalance.Web.Api.exe database [<options>]

Where [<options>] is any of:

	--upgrade		Upgrades the database to the expected schema.
	--connectionString=VALUE
					[Optional] Sets the database connection string to use.
					If omitted, the value from the config file will be used
					to perform operations an the database.

Or one of the common options:

	--help			Show detailed help for this command
	--version		Show version information

Upgrade database

This example performs the database upgrade to the expected schema. It uses the connection string from the configuration. 

AMANA.SmartTaxBalance.Web.Api.exe database --upgrade

Upgrade database with connection string

This examples performs the database upgrade to the expected schema with a custom connection string. This is useful, when the connection string from the configuration does not have sufficient rights to perform the upgrade. 

AMANA.SmartTaxBalance.Web.Api.exe database --upgrade --connectionString="Server=(localdb)\MSSqlLocalDb;Database=taxbalance;User ID=sa;Password=sa;Trusted_Connection=True;TrustServerCertificate=True"
  • No labels