使用 LINQ to SQL 读取 DBML xml

发布于 2024-08-09 19:15:35 字数 70 浏览 4 评论 0原文

我想迭代 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 技术交流群。

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

发布评论

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

评论(2

你是年少的欢喜 2024-08-16 19:15:35

要获取有关 DataContext 模型的元数据,我使用 DataContext 实例的 MappingSource 属性,例如,获取模型上的表:

var ctx = new YourDataContext();
var tables = ctx.Mapping.MappingSource.GetModel(ctx.GetType()).GetTables();

foreach (var table in tables)
{
   // table.TableName
}

tablesMetaTable 对象。

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:

var ctx = new YourDataContext();
var tables = ctx.Mapping.MappingSource.GetModel(ctx.GetType()).GetTables();

foreach (var table in tables)
{
   // table.TableName
}

tables is a ReadOnlyCollection of MetaTable objects.

涙—继续流 2024-08-16 19:15:35

如果您确实必须(或想要)使用 XML 解析,则需要注意的一点是 LINQ-to-SQL 中的命名空间。

以下是如何读取 节点下的 节点列表的示例:

// create a XmlDocument
XmlDocument doc = new XmlDocument();
doc.Load(@"path-to-your-model.dbml");

// define the namespace to use
XmlNamespaceManager mgr = new XmlNamespaceManager(doc.NameTable);
mgr.AddNamespace("ns", "http://schemas.microsoft.com/linqtosql/dbml/2007");

// grab the list of all "type" nodes under a "table" node
XmlNodeList types = doc.SelectNodes("/ns:Database/ns:Table/ns:Type", mgr);

// iterate over all nodes found
foreach (XmlNode node in types)
{
   string name = node.Attributes["Name"].Value;
   // or do whatever else you need / want to do here
}

希望对您有所帮助!

马克

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:

// create a XmlDocument
XmlDocument doc = new XmlDocument();
doc.Load(@"path-to-your-model.dbml");

// define the namespace to use
XmlNamespaceManager mgr = new XmlNamespaceManager(doc.NameTable);
mgr.AddNamespace("ns", "http://schemas.microsoft.com/linqtosql/dbml/2007");

// grab the list of all "type" nodes under a "table" node
XmlNodeList types = doc.SelectNodes("/ns:Database/ns:Table/ns:Type", mgr);

// iterate over all nodes found
foreach (XmlNode node in types)
{
   string name = node.Attributes["Name"].Value;
   // or do whatever else you need / want to do here
}

Hope that helps a bit!

Marc

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