I have a massive set of classes that I need to create from an XML file, which I really dislike doing manually. I would really like to create a LINQ DataContext, so I can use VisualStudio to create an SQL database from a DataContext.
I know that I can generate XSD and C # classes from an XML file, but are there any tools for creating the corresponding SQL Database tables or LINQ DataContext from them?
source
share