ASP.NET 对于参数方向和 SQLDBType 我缺少什么参考

发布于 2024-11-26 09:23:13 字数 135 浏览 1 评论 0原文

以下工作

嘿,只是想知道我需要向 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 技术交流群。

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

发布评论

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

评论(2

葬シ愛 2024-12-03 09:23:13

尝试确保您的项目具有对 System.Data 程序集

在此处输入图像描述

的引用,并且您的代码文件具有:

using System.Data;

这应该使您可以访问这两种枚举类型。

Try ensuring that your project has a reference to the System.Data assembly

enter image description here

and that your code file has:

using System.Data;

That should give you access to both those enumeration types.

凉宸 2024-12-03 09:23:13

这两个枚举(ParameterDirectionSqlDbType)在 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.

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