是否可以从 EDMX 模型生成 XML?
我正在从 edmx 模型生成 POCO,并且想知道是否可以利用实体框架简洁的代码生成功能来创建 xml 文档以及 POCO(这是我的项目所需的)。
I'm generating my POCO's from edmx model, and would like to know if its possible to make use of the neat codegen features of Entity Framework to create my an xml document along with the POCO (which is needed for my project).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 T4 模板在 Visual Studio 中生成 XML 文档。
但您应该注意,EDMX 文件本身是一个 XML 文档。
文件包含三个主要部分
StorageModels
- 描述该数据库ConceptualModels
- 描述您的代码和对象映射
- 描述两个模型如何关联查看标准 EDMX 文件是否包含您想要的信息类型。如果没有,请使用 T4 对其进行解析和粉碎,以提取您要查找的信息。
You can generate an XML document in Visual Studio using T4 templates.
But you should note that the EDMX file itself is an XML document.
There are three main sections to the file
StorageModels
- describes that databaseConceptualModels
- describes your code and objectsMappings
- describes how the two models relateLook at whether the standard EDMX file contains the type of information you want. If not, parse and shred it using T4 to extract the information you're looking for.
无需解析 EDMX 文件,使用 TiraggoEdmx,可以通过 NuGet 安装它。请参阅 http://brewdawg.github.io/Tiraggo.Edmx/ 它提供了所有Microsoft 对您隐藏的 EDMX 文件中的元数据,非常简单,效果很好。我写了它,但它是 100% 免费的,甚至还附带了一个示例 POCO 模板。
No need to parse the EDMX file, use TiraggoEdmx, you can install it via NuGet. See http://brewdawg.github.io/Tiraggo.Edmx/ it serves up all of the metadata from your EDMX files that Microsoft hides from you, very simple, works great. I wrote it but it's 100% free, even comes with a sample POCO template.