It appears that LINQ to XSD requires that an XML document be loaded fully into memory before it can be "LINQ'd", i.e. a LINQ query against it can be enumerated. I'm not sure what the correct terminology for what I want to do is but basically I'd like to construct a LINQ query and have it run through all of the elements in an XML document using something like XmlReader. The point being, of course, not to have the overhead of holding the entire document in memory when I just want to make pass over
Read More...