.edmx 文件的用途是什么?
.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.
.edmx 文件
是一个 XML 文件,它定义了概念模型
、存储模型
以及之间的映射
这些模型。.edmx 文件
还包含ADO.NET 实体数据模型设计器(实体设计器)
用于以图形方式呈现模型的信息。An
.edmx file
is an XML file that defines aconceptual model
,a storage model
, and themapping
between these models. An.edmx file
also contains information that is used by theADO.NET Entity Data Model Designer (Entity Designer)
to render a model graphically.