EF4 Code-First 中 OnModelCreating 的目的是什么?

发布于 2024-10-13 08:50:59 字数 64 浏览 0 评论 0原文

我很好奇 EF4 Code-First 上下文类中 OnModelCreating 的目的是什么?它是如何运作的?

I was curious about what the purpose of OnModelCreating in EF4 Code-First context class? How does it work?

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

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

发布评论

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

评论(2

自找没趣 2024-10-20 08:50:59

这是一篇不错的文章 在 ADO.NET 团队博客中。
总之,这个活动主要是针对Fluent映射的。

Here is a nice article in ADO.NET Team Blog.
In short, this event is mainly for Fluent mapping.

篱下浅笙歌 2024-10-20 08:50:59

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.

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