vote up 1 vote down star
1

I'm working with an SQL Server database with about 50 tables and plenty of relationships between those tables. I have already written a backup and restore function which will retrieve all data from the model, export it to XML which it could then import again into a clean database. But maintaining this import/export is a lot of work when there are some major structural changes to the entity model. I want a more dynamic solution.

Is there a more dynamic solution to export data from an entity model and to import it back again into a clean database?

Oh, before I forget... I don't have direct access to the database itself, not it's connection. All I get and all I can use is this entity framework object...

flag

1 Answer

vote up 0 vote down

Have you tried the SQL Server Publishing Wizard? It creates a nifty formatted SQL file that can be easily moved between application, I've also also used (with some search&replace based on regular expression) to move data from SQL Server to Oracle...

Regards
Massimo

link|flag
I see that you do not have DB connection, so this solution could not apply... – massimogentilini Nov 5 at 23:48
I don't have a DB connection, indeed. Even if I could ask the Entity Model for a connection string, using it for anything else is out of the question. (I'd probably end up with a footprint on my behind if I even tried this.) – Workshop Alex Nov 6 at 10:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.