使用 LINQ to SQL 读取 DBML xml
我想迭代 dbml 的 xml 中的表。但我正在努力获取 Type 元素。我该如何使用 LINQ to SQL 来做到这一点?
I want to iterate through the tables in a dbml's xml. But i'm struggling to get to the Type elements. How would I do it using LINQ to SQL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要获取有关 DataContext 模型的元数据,我使用
DataContext 实例的 MappingSource
属性,例如,获取模型上的表:tables
是 MetaTable 对象。To get meta-data about a DataContext model I use the
MappingSource
property of a DataContext instance, for example, to get the tables on a model:tables
is a ReadOnlyCollection of MetaTable objects.如果您确实必须(或想要)使用 XML 解析,则需要注意的一点是 LINQ-to-SQL 中的命名空间。
以下是如何读取
节点下的
节点列表的示例:希望对您有所帮助!
马克
If you really must (or want to) use XML parsing, the point to watch out for is the namespace in LINQ-to-SQL.
Here's a sample on how to read out the list of
<Type>
nodes under the<Table>
node:Hope that helps a bit!
Marc