Entity Framework 4.1:首选注释属性还是使用 Fluent API
正如标题所暗示的:使用注释而不是 Fluent API(或相反)的优点和缺点是什么?
As the title implies: what are the pros and cons using Annotations instead of the Fluent API (or reversed)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你是纯粹主义者,你不会使用数据注释,因为它们会让你的 POCO 类有点脏。此外,数据注释仅适用于简单的映射功能。如果你需要更复杂的映射,你无论如何都必须使用 Fluent API。基本映射的最终选择是主观的。
If you are purist you will not use Data Annotations because they make your POCO class little bit dirty. Also data annotations are only for simple mapping features. If you need more complex mapping you have to use fluent API anyway. Final choice for basic mapping is subjective.