.edmx 文件的用途是什么?

发布于 2024-10-16 10:08:00 字数 114 浏览 0 评论 0原文

.edmx 文件的用途是什么?阅读 CSDL、SSDL 和 MSL 规范,在我看来,.edmx 文件仅在设计时使用。我们打算将它与其他 edmx 一起分发吗?看来我们需要分发 .ssdl 和/或 .csdl 文件。

What is the purpose of .edmx files? Reading the CSDL, SSDL, and MSL specifications, it looks to me like .edmx files are used only at design time. Are we meant to distribute it with the other edmx? It seems like we need to distribute the .ssdl and/or .csdl files instead.

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

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

发布评论

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

评论(2

擦肩而过的背影 2024-10-23 10:08:00

EDMX 是 Visual Studio 的“容器”,包含有关实体数据模型的所有内容。

它包含 CSDL、SSDL、MSL 中的所有信息,以及有关 Visual Studio 设计器界面中表的视觉布局的信息。

在构建过程中,EDMX 文件会转换为 CSDL、SSDL、MSL(通常作为资源嵌入到程序集中)。您绝对不必将 EDMX 文件分发或复制到任何地方即可运行应用程序。

更新:如果您对基于代码的方法更感兴趣,您应该查看用于实体框架的代码优先 CTP,根本不需要任何 .edmx、.csdl/ssdl/msl 文件。

EDMX is Visual Studio's "container" for all things about your Entity Data Model.

It contains all the information that is in the CSDL, SSDL, MSL, plus information about the visual layout of the tables in your Visual Studio designer surface.

The EDMX file is converted into CSDL, SSDL, MSL (typically embedded as resources in your assembly) during the build process. You definitely don't have to distribute or copy the EDMX files anywhere for the app to run.

Update: if you are more interested in a code-based approach, you should check out the code-first CTP for Entity Framework which gets by without any .edmx, .csdl/ssdl/msl files at all.

请远离我 2024-10-23 10:08:00

.edmx 文件是一个 XML 文件,它定义了概念模型存储模型以及之间的映射这些模型。 .edmx 文件 还包含ADO.NET 实体数据模型设计器(实体设计器) 用于以图形方式呈现模型的信息。

An .edmx fileis an XML file that defines a conceptual model , a storage model, and the mapping between these models. An.edmx file also contains information that is used by the ADO.NET Entity Data Model Designer (Entity Designer) to render a model graphically.

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