Entity Framework itself is based on the provider and is designed to work with a relational database. If you really want to, you can write your own provider for EF that reads / writes to the xml file, but it will be a huge job.
I expect that you really should look at one of:
- LINQ to XML
- XML Serialization (de)
- XPath / XQuery
- XSLT
Entity Framework does not have a natural fit for this scenario.
Marc Gravell Mar 03 '09 at 22:32 2009-03-03 22:32
source share