如何以编程方式指定 SubSonic 3 的连接名称

发布于 2024-08-12 01:52:34 字数 115 浏览 2 评论 0原文

情况是这样的。

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

贩梦商人 2024-08-19 01:52:34

我们的提供程序只是连接字符串的包装器 - 因此,无论您在哪里看到“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);

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