类型或命名空间名称“Objects”;命名空间“System.Data”中不存在
我在 Mac OS X Snow Leopard 上使用 MonoDevelop 来开发 ASP.NET MVC 应用程序。我已经在 Windows 7 上的 Visual Studio 2008 上对其进行了测试,并且工作正常,但是在 MonoDevelop 上编译它时,它会抛出错误: 命名空间 'System.Data' 中不存在类型或命名空间名称 'Objects'< /code> 在这一行下:
publicpartial class MoviesDBEntities : global::System.Data.Objects.ObjectContext
我不确定这里的确切问题是什么,但我假设我遗漏了一些东西从错误所说的内容来看。我该如何纠正这个问题?谢谢。
I'm using MonoDevelop on Mac OS X Snow Leopard to develop an ASP.NET MVC Application. I have tested it on Visual Studio 2008 on Windows 7 and it worked fine, but when compiling it on MonoDevelop it throws the error: The type or namespace name 'Objects' does not exist in the namespace 'System.Data'
under this line: public partial class MoviesDBEntities : global::System.Data.Objects.ObjectContext
I'm not sure what the EXACT problem here is but I'm assuming I'm missing something from what the error is saying. How do I rectify this? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
问题是 Mono 尚未实现实体框架。 也许有一天。目前还没有机会在 Mono 下编译它。
The problem is that there's not yet an implementation of the Entity Framework for Mono. Maybe some day. Currently there's no chance you compile this under Mono.
实体框架 6 现已在 Mono 上可用。
http://www.mono-project.com/EntityFramework
您可以参考EntityFramework.dll。
Entity Framework 6 is now available on Mono.
http://www.mono-project.com/EntityFramework
You can reference EntityFramework.dll.