如何通过 Sharp 架构使用数据注释

发布于 2024-12-01 18:37:31 字数 175 浏览 0 评论 0原文

我们最近升级到 MVC2 和 SharpArchitecture 1.6。我们的模型都在我们的Project.Core项目中,而资源则在我们的Project.Web项目中。我们无法引用 Core 中的资源文件,因为这会创建循环依赖。

我们想在模型上使用数据注释 - 有没有办法访问资源文件,以便我们可以获得本地化的消息?

We recently upgraded to MVC2 and SharpArchitecture 1.6. Our models are all in our Project.Core project, while resources are in our Project.Web project. We can't reference the resource files in Core , as that would create a circular dependency.

We want to use Data Annotations on the model - is there a way to access the resource files so we can have localized messages?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

反差帅 2024-12-08 18:37:31

为什么不将所有资源提取到一个独立的项目中呢?然后,您可以从每个项目中引用它们,而无需循环引用。从 dataannotaion 你可以像这样链接它们

[Required(ErrorMessageResourceType = typeof(Resources.Validations), ErrorMessageResourceName = "Required")]

Why not extract in a stand alone project all your resources? you can then reference them from every project without the circular reference. From dataannotaion you link them like this

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