Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Can the XElement of LINQ to SQL Table and LINQ to XML be join?

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly introduces whether the XElement of LINQ to SQL Table and LINQ to XML can be join up, has a certain reference value, interested friends can refer to, I hope you can learn a lot after reading this article, the following let the editor take you to know about it.

Writing about Linq To SQL, as a result of exploring the core concepts of LINQ, a thought popped up in my mind, "can I combine LINQ to SQL Table with LINQ to XML's XElement join?"

In theory, this is feasible in LINQ's design concept.

Static void TestCrossLinq ()

{

NORTHWND db = new NORTHWND ("Data Source=.\\ SQLEXPRESS"

Initial Catalog=NORTHWND;Integrated Security=True ")

XDocument doc = XDocument.Load ("XMLFile1.xml")

Var p = from S1 in doc.Elements ("tables"). Elements ("table").

Descendants ("row")

Join S2 in db.Customers on s1.Element ("CUSTOMER_ID").

Value equals s2.CustomerID

Where s1.Parent.Attribute ("name")! = null &

S1.Parent.Attribute ("name") .Value = "Orders"

Select new XElement ("Order", s1.Nodes ()

New XElement ("CompanyName", s2.CompanyName))

Foreach (var item in p)

{

Foreach (var item3 in item.Elements ())

{

Console.WriteLine ("{0}: {1}", item3.Name, item3.Value)

Console.WriteLine ("-")

}

}

Console.ReadLine ()

}

This program reads the Order information from XML, uses the data in its CUSTOMER_ID Element to communicate with Linq To SQL Table: Customers join, takes out the CompanyName field and puts it into the result set.

Thank you for reading this article carefully. I hope the article "whether the XElement of LINQ to SQL Table and LINQ to XML can be join up" shared by the editor will be helpful to you. At the same time, I also hope you can support us and pay attention to the industry information channel. More related knowledge is waiting for you to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report