在 DataContext 的 IDbconnection 上使用未分配的局部变量错误。?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
donn
已声明,但未分配任何值。尝试类似的方法:
donn
is declared, but it isn't assigned any value.Try something like: