I am trying to search an xml file and compare the attribute name from a list of keywords at run time. I used DelegatePredicateBuilder as suggested in this post: Linq to objects Predicate Builder.
The xml file is as follows and need to search the values of the name attribute.
<group name="Install Software">...</group>
The result always returned false. When I examine p, it says p is not exist. When I examine predicate, it shows the following.
predicate {Method = {Boolean <Or>b__2(System.Xml.Linq.XElement)}} System.Func<System.Xml.Linq.XElement,bool>
I like to know how to be able to see the contents of the predicate. The method call is as follows. The supplied keyword is "Install" so it should find but not.
private IEnumerable<XElement> FindAttribute(XElement doc, String attributeType, String attributeName, List<string> KeywordList)
{
var predicate = DelegatePredicateBuilder.False<XElement>();
foreach (string keyword in keywordList)
{
string temp = keyword;
predicate = predicate.Or(p => (p.Attribute(attributeName).Value).ToString().Contains(temp));
}
var groupResult = doc.DescendantsAndSelf(attributeType)
.Where(predicate);
if (groupResult.Count() == 0)
return null;
else
return groupResult;
}
I'd appreciate someone can point me to the right direction. By the way, this is my first post and I am learning my way to get it posted right.