ADO.Net 实体框架从 XSD 文件生成模型
我有一个相当大的 XSD 文件,并且听说可以使用实体框架连接到数据库等 XML 文件并根据 XSD 验证它们,但是我不知道如何执行此操作。
所以我想做的是从我的 XSD 文件生成一个实体框架模型,我想这将生成一系列对象,这些对象将在打开 XML 文件进行验证和填充时使用。
I have a rather large XSD file and I have heard that it is possible using the entity framework to connect to XML files like databases and validate them against the XSD, however I do not know how to go about doing this.
So what I'm trying to do is generate a entity framework model from my XSD file, and I imagine this will generate a series of objects which will be used when opening a XML file for validation and population.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您也可以尝试使用最新(4.5)版本的 XML 架构定义工具
其中
/eld
选项使您能够使用 LINQ to数据集As well you can try to use latest (4.5) version of XML Schema Definition Tool
where
/eld
option enable you to use LINQ to DataSetLinq2xsd 会做到这一点。 http://linqtoxsd.codeplex.com/ 曾经死过,现在却生活在 codeplex 上。
Linq2xsd will do that. http://linqtoxsd.codeplex.com/ once dead it now lives on codeplex.