Silverlight lacks XPath support in LinqToXML. I need to be able to do dynamic queries over xml for a medical application, where the queries themselves are stored in XML. An example of this type of query is a rule for when a certain test (in this casea pap smear) is needed: match="/root[not(age<21) and gender='female' and age<30 and not(psh/_psh[contains(@title,'hysterectomy')])]" My goal is to develop an Xpath to Linq converter to use in Silverlight. Using Infix to Postfix, - I've been able
Read More...