Yep, I am trying to find a replacement for SQLXML and easy way to query through XML documents stored in the sql Server.
I found LINQ to XML provides a lot of methods,
But my XML documents will be huge documents, when i use LINQ can i query one some nodes from the XML document ?
I know if i bring the whole document to server i can use XMLREADER or DOM object to go through and find what i want, but the whole document has to be loaded on the memory its costly. so i wanted to find an alternative to load only the specific nodes that i am interested in.so that i dont need to fill up my memory with unwanted data. but if i choose my manager is interested in a consistent way, so if i use LINQ i should use IT for all. so i did my own research on SQL index and stuff.
I am trying to learn more about sql + xml + xpath + xquery. i wanted to know whether my path is right or not. I have very short time to finish the project.
Thanks
Chamy