EF4 Code-First 中 OnModelCreating 的目的是什么?
我很好奇 EF4 Code-First 上下文类中 OnModelCreating 的目的是什么?它是如何运作的?
I was curious about what the purpose of OnModelCreating in EF4 Code-First context class? How does it work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一篇不错的文章 在 ADO.NET 团队博客中。
总之,这个活动主要是针对Fluent映射的。
Here is a nice article in ADO.NET Team Blog.
In short, this event is mainly for Fluent mapping.
OnModelCreating 使您可以访问可用于配置/自定义模型的 ModelBuilder 实例。
正如前面的答案所提到的,您通常会在其中使用代码优先的流畅 API。吉尔·芬克有 发布恕我直言,比之前答案中引用的文章有更清晰的解释。
对于背景信息,Guthrie 有一个很好的介绍 关于 EF Code-First 的文章,如果您想知道为什么它被称为“流畅的 API”,请查看 此处。
OnModelCreating gives you access to a ModelBuilder instance that you can use to configure/customize the model.
As the previous answer mentions, you will typically use the code-first fluent API within it. Gil Fink has posted what IMHO is a clearer explanation than the article cited in the previous answer.
For background info, Guthrie has a nice intro article on EF Code-First, and if you are wondering why its referred to as "fluent API", look here.