ASP.NET 对于参数方向和 SQLDBType 我缺少什么参考
以下工作
嘿,只是想知道我需要向 VS2008 项目添加哪些引用才能获得未声明的 名称 ParameterDirection
。
未声明名称 SqlDbType
谢谢
Hey just wondering what references I need to add to my VS2008 Project to get the following working
Name ParameterDirection
is not declared.
Name SqlDbType
is not declared
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试确保您的项目具有对
System.Data
程序集的引用,并且您的代码文件具有:
这应该使您可以访问这两种枚举类型。
Try ensuring that your project has a reference to the
System.Data
assemblyand that your code file has:
That should give you access to both those enumeration types.
这两个枚举(ParameterDirection 和 SqlDbType)在 System.Data.dll 中定义
某些类型的项目默认不引用该库。
您是否为它
添加了参考
?如果是,请提供一些代码。
Both of these enumeration (ParameterDirection and SqlDbType)are defined in System.Data.dll
This library is not referenced by default in some types of projects.
Did you
Add reference
for it?If yes, then provide some code, please.