Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个项目,其中一些带有表适配器的数据集存储在 VS 2010 的 App_Code 文件夹中。我无法从后面的代码访问表适配器。我尝试按照为 VS 2005 编写的指南进行操作,但是 VS 2010 表示它无法解析符号。我需要为 VS 2010 添加任何其他命名空间来解析符号吗?
我的代码类似于以下代码,但使用了正确的数据集和表适配器名称。
var tableAdapter = new NorthwindTableAdapters.SuppliersTableAdapter();
谢谢你们的回复。问题原来是在将项目从 VS 2008 移植到 VS 2010 时出现问题。