|
sql_er
Constraint Violating Yak Guru
251 Posts |
Posted - 12/22/2006 : 14:32:51
|
Guys,
I recently started programming in C#. I then faced a need to work with XML documents. That is, query them.
Initially I used XPath. For simple selects it works fine. However, I need to do sub-quering and could not figure out how to do it using XPath. I then decided to try out XQuery. However, I cannot find a single source describing how to use XQuery in C# .Net (googling brings about irrelevant topics).
Any suggestion is appreciated.
Thank you
P.S. I need to do something like this using XQuery:
SELECT a FROM b WHERE c IN ( SELECT c FROM d WHERE e = f ) |
|