Reputation: 650
I would like to create an SQL function that will be deployed in a schema other than DBO.
I found a post where a workaround with post build script is explained.
I could use the above mentioned solution, but i kinda feel there should be something more civilized that that. Some parameter settings maybe, or attribute.
Thank you
Upvotes: 5
Views: 716
Reputation: 70379
There are two options to achieve what you want:
So if you want it put in a different schema you either use a connection with your target schema as default schema or configure the project settings accordingly...
Upvotes: 2