是否可以更改 Sql Workflow Persistence Service 表和存储过程名称?
我正在使用默认的 Sql 工作流持久性服务来管理我正在开发的应用程序中的工作流持久性。 我使用 Microsoft 提供的脚本在 SQL 数据库中生成架构和逻辑。 到目前为止,效果很好; 但是,我想更改表和存储过程的名称,以符合我选择的命名约定。
例如,Microsoft 提供的脚本生成了一个名为 RetrieveNonblockingInstanceStateIds
的存储过程,我想将其名称更改为 wf_RetrieveNonblockingInstanceStateIds
。
I'm using the default Sql Workflow Persistence Service to manage workflow persistence in an application I'm developing. I used the scripts provided by Microsoft to generate the schema and logic in a SQL database. Up until now, it's worked great; however, I'd like to change the names of both the tables and stored procedures to comply with a naming convention of my choosing.
For example, the script provided by Microsoft generated a stored procedure named RetrieveNonblockingInstanceStateIds
and I'd like to change it's name to wf_RetrieveNonblockingInstanceStateIds
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能可以创建自己的持久性服务,但就我个人而言,我会保持原样。
You could probably create your own persistence service, but personally I'd leave it well alone as it is.