我在我的网站中添加了一个 ADO.Net 实体数据模型并将其命名为WebSocketModel
。因此,它的所有代码都已在文件夹name space WebSocketModel
内部生成。App Code
但现在我无法引用 this namespace
。我需要使用context classes
在这个里面创建的namespace
来触发LINQ queries
。
我试图namespace
通过using WebSocketModel;
我的网络表单中的语句来引用,但我得到了错误
The type or namespace name 'WebSocketModel' could not be found
(are you missing a using directive or an assembly reference?)
这个错误更令人困惑的是,每当我输入using
智能感知时,都会自动建议命名空间WebSocketModel
。然而,后来当我建立我的网站时,我得到了上述错误。