Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Entity Framework with XML Files [closed]

Can someone point me to a good tutorial explaining the Entity Framework using an XML file instead of a database? I have seen some good tutorials with SQL databases, but I can't make the leap to an XML file.

Thanks!

like image 620
Tim Avatar asked Mar 03 '09 22:03

Tim


1 Answers

Entity Framework itself is provider-based, and is designed to operate over a relational database. If you really wanted to, you could write your own provider for EF that reads from/writes to an xml file, but it would be a huge amount of work.

I expect you should really be looking at one of:

  • LINQ-to-XML
  • XML (de)serialization
  • XPath/XQuery
  • XSLT

Entity Framework doesn't have a natural fit in this scenario.

like image 65
Marc Gravell Avatar answered Oct 06 '22 00:10

Marc Gravell