Can I retrieve full database structure using its connection string as collection of tables, its columns, relationships, etc?
Can I modify database using these objects?
Edit: Database – MS SQL Server. I need to be able to retrieve and edit database tables, column names, types, etc in code.
Can I retrieve full database structure using its connection string as collection of tables,
Share
You can try DbConnection.GetSchema() , see here for a little tutorial.