Let's說我有下面的XML,插入的XElement包圍另一個的XElement與LinqToXml
<Where><BeginsWith>...</BeginsWith></Where>
,現在我想「插入」包圍BeginsWith子句<And>
條款,所以它看起來像這樣以後,
<Where><And><BeginsWith>...</BeginsWith></And></Where>
我該如何用LinqToXml來實現?
Add方法,我基本上是做 where.Add(new XElement("And"))
,只會增加「與」 BeginsWith後,像這樣,
<Where><BeginsWith>...</BeginsWith><And /></Where>
感謝喬恩,這就像一個魅力:-) – 2009-06-02 07:56:12