如何在 C# 中创建将部署在 DBO 以外的架构中的 CLR 过程
我想创建一个将部署在 DBO 以外的架构中的 SQL 函数。
我找到了一篇文章,其中解释了构建后脚本的解决方法。
我可以使用上述解决方案,但是我觉得应该有比这更文明的东西。可能是一些参数设置,或者属性。
谢谢
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有两个选项可以实现您想要的效果:
因此如果您希望将其放入不同的架构中, schema 您可以使用与目标架构的连接作为默认架构,或者相应地配置项目设置...
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...