在 DataContext 的 IDbconnection 上使用未分配的局部变量错误。?

发布于 2024-12-01 02:55:19 字数 393 浏览 0 评论 0原文

IDbConnection donn;
string dstr = "Server=.;Initial Catalog=master;Integrated Security=sspi";
donn.ConnectionString = dstr.ToString();

DataContext context = new DataContext(donn);

找到上面的代码片段 - donn 变量用于 IDbConnection,但我无法设置它的属性 ConnectionString。在该行(第三行)中,它显示一个错误 -

 'Use of unassigned local variable 'donn''

请帮忙..

IDbConnection donn;
string dstr = "Server=.;Initial Catalog=master;Integrated Security=sspi";
donn.ConnectionString = dstr.ToString();

DataContext context = new DataContext(donn);

Find the above code snippet- donn variable is for IDbConnection and i couldn't set the property ConnectionString of it. In that line (3rd line) it shows an error that -

 'Use of unassigned local variable 'donn''

Please help..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

时光与爱终年不遇 2024-12-08 02:55:19

donn 已声明,但未分配任何值。

尝试类似的方法:

IDBConnection donn = new SqlConnection(dstr);

donn is declared, but it isn't assigned any value.

Try something like:

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