如何以编程方式指定 SubSonic 3 的连接名称
情况是这样的。
我正在使用 SubSonic 3,并且想在运行时指定要使用的连接字符串。这是一个命令行应用程序,连接字符串名称将由用户指定为命令行参数。
实现这一目标的最佳方法是什么?
Here is the situation.
I am using SubSonic 3 and would like to specify at run time which connection string to use. This a command line application and the connection string name will be specified by the user as a command line argument.
What is the best way to accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们的提供程序只是连接字符串的包装器 - 因此,无论您在哪里看到“IDataProvider”,都可以使用 ProviderFactory.GetProvider("CONNECTIONSTRING","DataProvider") 创建一个。我知道这看起来像很多提供程序:)但后者是为了连接字符串工作 - 在本例中它是一个字符串值,应该是“System.Data.SqlClient”或您正在使用的任何内容。
这也适用于 ActiveRecord - Post.SingleOrDefault(MyProvider, x=>x.ID=id);
Our providers are simply wrappers for connection strings - so anywhere you see "IDataProvider" you can create one using ProviderFactory.GetProvider("CONNECTIONSTRING","DataProvider"). I know that looks like a lot of providers :) but the latter is for the connection string to work - in this case it's a string value and should be "System.Data.SqlClient" or whatever you're using.
This will work with ActiveRecord too - Post.SingleOrDefault(MyProvider, x=>x.ID=id);