1
このクエリでは、いつも 'normal'型要素が必要です。
_includeXフラグが設定されている場合は、 'workspace'タイプの要素も必要です。
これを1つのクエリとして記述する方法はありますか?または、クエリを送信する前に_includeXに基づいてwhere句を作成しますか?Linqクエリで 'where'句を作成する
if (_includeX) {
query = from xElem in doc.Descendants(_xString)
let typeAttributeValue = xElem.Attribute(_typeAttributeName).Value
where typeAttributeValue == _sWorkspace ||
typeAttributeValue == _sNormal
select new xmlThing
{
_location = xElem.Attribute(_nameAttributeName).Value,
_type = xElem.Attribute(_typeAttributeName).Value,
};
}
else {
query = from xElem in doc.Descendants(_xString)
where xElem.Attribute(_typeAttributeName).Value == _sNormal
select new xmlThing
{
_location = xElem.Attribute(_nameAttributeName).Value,
_type = xElem.Attribute(_typeAttributeName).Value,
};
}