ASP.NET MVC | ASP.NET MVC我应该在模型中放置 DataAnnotations 的位置
模型已经存在。它们位于另一个项目中。我应该将 DataAnotations 放在该项目或我的项目中的什么位置?我应该使用部分类吗?我想放置 DataAnatation 因为我希望 javascript 验证能够在客户端上工作。
A models already exists. They are situated in another project. Where I should put DataAnotations in that project or my one? Should I use partial classes? I would like to put DataAnatation because I want javascript validation to work on client.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不能跨程序集使用分部类,因此该选项不适用。
您可以创建 DTO(数据传输对象),这些 DTO 是其他程序集中 DTO 的副本,对其进行注释和映射。
为了轻松映射,您可以使用自动映射器等工具。如果属性名称匹配,它基本上会为您完成所有工作。
You can't use partial classes across assemblies, so that option is out.
You can create DTOs (data transfer objects) that are copies of the ones in the other assembly, annotate them and map.
For easy mapping you can use a tool like auto mapper. If the property names match, it will essentially do all the work for you.
为您的模型创建一个部分类。像这样:
然后创建一个新类 Log_Validation 来完成所有数据注释工作。
Create a partial class for your Model. like this:
then create a new class
Log_Validation
which does all the data annotations stuff.