A cross tenant metadata driven processing framework for Azure Data Factory and Azure Synapse Analytics achieved by coupling orchestration pipelines with a SQL database and a set of Azure Functions.
To support backwards compatibility when database objects have changed schema’s or been renamed in the database a set of pass through Synonyms exist. They provide a simple redirect from an old object schema/name to its current schema/name.
Any database objects developed as part of the framework code project do not use synonyms and have had code replaced to call the current object names directly.
Example:
CREATE SYNONYM [procfwk].[DataFactoryDetails]
FOR [procfwk].[DataFactorys]
In a later release of the processing framework when database object names have matured all Synonyms will be deprecated.