删除所有约定。这可以解决我的问题吗
将 codefirst 与现有数据库一起使用可能是一个相当大的挑战,因为事情与约定不匹配。仍然不知道所有约定是什么,但你就知道了。
现在,如果我要删除所有约定,我是否仍然需要进行 fks 的映射以及多对多等...
这样做有什么问题吗?
有什么建议吗?
Using codefirst with an existing database can be quite a challenge as things dont match up the conventions.Still dont know what all conventions are but there you go..
Now if I were to remove all conventions do I still need to do the mapping of fks and many to many etc...
Are there any problems in doing so.
any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您删除所有约定,您将必须使用流畅的 API 映射几乎所有内容。任何自动检测(如外键、主键等)都是按约定完成的。此外,数据注释属性到映射的转换也是按照约定完成的。
If you remove all conventions you will have to map almost everything with fluent API. Any automatic detection like foreign keys, primary keys etc. is done by conventions. Also translation of data annotation attributes into mapping is done by conventions.