是否可以从 EDMX 模型生成 XML?

发布于 2024-12-03 01:25:48 字数 82 浏览 0 评论 0原文

我正在从 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 技术交流群。

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

发布评论

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

评论(2

梦醒灬来后我 2024-12-10 01:25:48

您可以使用 T4 模板在 Visual Studio 中生成 XML 文档。

在 Visual Studio 中,T4 文本模板是文本块和可以生成文本文件的控制逻辑的混合体。控制逻辑以 Visual C# 或 Visual Basic 中的程序代码片段形式编写。生成的文件可以是任何类型的文本,例如网页,或者资源文件,或者任何语言的程序源代码。

但您应该注意,EDMX 文件本身是一个 XML 文档。

  • 右键单击 Model.edmx 文件
  • “打开方式...”
  • 选择“XML(文本)编辑器”

文件包含三个主要部分

  • StorageModels - 描述该数据库
  • ConceptualModels - 描述您的代码和对象
  • 映射 - 描述两个模型如何关联

查看标准 EDMX 文件是否包含您想要的信息类型。如果没有,请使用 T4 对其进行解析和粉碎,以提取您要查找的信息。

You can generate an XML document in Visual Studio using T4 templates.

In Visual Studio, a T4 text template is a mixture of text blocks and control logic that can generate a text file. The control logic is written as fragments of program code in Visual C# or Visual Basic. The generated file can be text of any kind, such as a Web page, or a resource file, or program source code in any language.

But you should note that the EDMX file itself is an XML document.

  • Right click on your Model.edmx file
  • 'Open With...'
  • Choose 'XML (Text) Editor'

There are three main sections to the file

  • StorageModels - describes that database
  • ConceptualModels - describes your code and objects
  • Mappings - describes how the two models relate

Look 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.

岁月蹉跎了容颜 2024-12-10 01:25:48

无需解析 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.

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