我可以直接将存储过程的名称剪切并粘贴到某处吗?
我正在使用 LINQ to SQL,但有一件事我不太满意。
假设我没有需要的存储过程,那么我就继续开发一个新的存储过程。现在我想通过 LINQ to SQL DataContext
公开它,因此我必须:
- 刷新存储过程列表,这需要几秒钟
- 在该列表中查找新的存储过程,该列表也用完宝贵的时间——我有成千上万的内容可以浏览。
有什么方法可以打开一个对话框并粘贴存储过程名称 - 这应该要快得多。
I am using LINQ to SQL, and there is one thing I am not very happy about.
Suppose I don't have a stored procedure I need, so I just go ahead and develop a new one. Now I want to expose it via the LINQ to SQL DataContext
, so I have to:
- refresh the list of stored procs, which takes a few seconds
- Find the new stored procedure in this list, which also uses up precious time - I have thousands of them to scroll through.
Is there any way I could just open up a dialog and paste the stored procedure name - that should be much faster.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,如果您愿意,您可以随时手动编辑 DBML。否则,不;工具是“原样”。由于 MS 的大部分开发工作都在 EF 上,因此我们不应该期望它/很快/可能永远会有很大改进。
Well, you can always edit the DBML by hand if you like. Otherwise, no; the tooling is "as is". Since most development effort by MS is on EF, we shouldn't expect it to improve much /soon / possibly-ever.