如何在 C# 中创建将部署在 DBO 以外的架构中的 CLR 过程

发布于 2024-11-28 17:51:52 字数 245 浏览 0 评论 0原文

我想创建一个将部署在 DBO 以外的架构中的 SQL 函数。

我找到了一篇文章,其中解释了构建后脚本的解决方法。

如何强制 dbo 架构名称?

我可以使用上述解决方案,但是我觉得应该有比这更文明的东西。可能是一些参数设置,或者属性。

谢谢

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.

How to force dbo schema name?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自演自醉 2024-12-05 17:51:52

有两个选项可以实现您想要的效果:

  • 您可以在项目设置/选项卡数据库中配置过程的所有者
  • ,否则您在 VS 中使用的连接的默认架构就是正在使用的连接架构,

因此如果您希望将其放入不同的架构中, schema 您可以使用与目标架构的连接作为默认架构,或者相应地配置项目设置...

There are two options to achieve what you want:

  • you can configure the owner of the Procedure in the project settings/tab database
  • otherwise the default schema of the connection you use in VS is the one getting used

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...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文