Mono什么时候支持System.ComponentModel.DataAnnotations?
我一直在 Mono 上尝试 asp.net mvc ,数据注释抛出未实现的异常,有谁知道 Mono 何时支持此功能?
根据此页面 http://www.go-mono.com/status/status.aspx?reference=4.0&profile=4.0& assembly=System.ComponentModel.DataAnnotations,快完成了...
I've been trying asp.net mvc on mono and the data annotation throws a not implemented exception, does anyone know when will Mono support this?
According to this page http://www.go-mono.com/status/status.aspx?reference=4.0&profile=4.0&assembly=System.ComponentModel.DataAnnotations, it's almost finished...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您没有提及您正在使用哪些数据注释,但 Mono 2.8 应该比 Mono 2.6.7 完成了更多的数据注释。
Mono 2.8 预览版:
http://mono.ximian.com/monobuild/preview/download-preview/
Mono 2.8 的决赛可能会在下周发布。
您的其他选择是不在您的 MVC 代码中使用它们,或者实现 Mono 没有的您需要的那些。其中大多数实施起来应该非常简单。
You don't mention which data annotation(s) you are using, but Mono 2.8 is supposed to have more of them completed than Mono 2.6.7.
Mono 2.8 Preview Build:
http://mono.ximian.com/monobuild/preview/download-preview/
The final of Mono 2.8 will likely be out next week.
Your other options are to not use them in your MVC code, or implement the ones you need that Mono does not have. Most of them should be pretty trivial to implement.
如果您想立即使用此功能,请将 System.ComponentModel.DataAnnotations.dll(MS.NET 版本 3.5.0.0)复制到您的 bin 文件夹中。它需要是程序集版本 3.5.0.0,因为版本 4.0.0.0 对我不起作用(即使使用主干中的单声道 2.8)。
If you want to use this functionality now, then copy System.ComponentModel.DataAnnotations.dll (MS.NET version 3.5.0.0) into your bin folder. It needs to be assembly version 3.5.0.0, because version 4.0.0.0 didn't worked for me (even with mono 2.8 from trunk).