让 SubSonic 使用现有的而不是新的数据提供者
我正在将 SubSonic 添加到旧应用程序中。该应用程序已经定义了一个ConnectionString。有没有办法可以使用此连接字符串而不是创建新的数据提供程序条目?
我知道一种解决方案是以编程方式在代码中设置它(即 SubSonic.DataService.GetInstance("Name").SetDefaultConnectionString("ConnString") )。然而,还有更优雅的解决方案吗?
I am adding SubSonic to a legacy application. This application already defines a ConnectionString. Is there a way I can use this connectionstring instead of creating a new Data Provider entry?
I know that one solution is programmatically setting this in the code (i.e. SubSonic.DataService.GetInstance("Name").SetDefaultConnectionString("ConnString") ). However, is there a more elegant solution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这是唯一的方法。如果配置文件中没有占位符 SubSonicService,它可能会抛出异常,我不记得了。
I think that's the only way to do it. And it might throw an exception if there is no place holder SubSonicService in the config file, I don't remember.