Creating an SQL Database from an ADO.NET Typed Dataset

I have a DataSet defined and developed in visual studio.

Who knows the tool for creating tables in SQL Server to match a dataset.

+3
source share
2 answers
+2
source

I don’t know any tools that will do this just like that, but you can always use SMO (SQL Server Management Objects) to read your DataSet and create database tables.

Mark

0

Source: https://habr.com/ru/post/1704929/


All Articles