<Default>
<SharepointContentType id="SharePointContentType">
<name id="Test1"
DisplayName="TestOne"
SharepointGroup="Test1SPGp">
</name>
<name id="Test2"
DisplayName="TestTwo"
SharepointGroup="Test2SPGp">
</name>
.
.
.
.
</SharepointContentType>
.
.
.
.
<Default>
上記のスキーマの場合、idが(ユーザー定義)であるSharePointContentType
タグを検索し、要素の値をフェッチするよりも、idが存在するノードを検索します。<name >
Test1
SharepointGroup
たとえば、ユーザー入力が出力Test1
よりも多い場合は、 Test1SPGp
linqを使用しようとして、以下のようにコーディングできましたが、成功しませんでした。
XDocument xDoc = XDocument.Load(GetDefaultXMLFile());
var feeds = from feed in xDoc.Descendants("name")
where feed.Attribute("id").Equals("admin")
select new
{
fxfv = feed.Attribute("SharepointGroup").Value
};