justdavid98
justdavid98

Reputation: 35

How do I delete a database from a Visual studio 2015 project

I have all these databases that I don't want, I want to start fresh, when I right click there is no delete option and if I delete them from the solution explorer my program breaks. These are all my databases...

Upvotes: 0

Views: 2493

Answers (1)

NaxiProg
NaxiProg

Reputation: 36

There are many different ways, but one that would surely work is writing a script:

  1. Right click on dt_DatabaseDataSet and select New Query
  2. write, DROP DATABASE dt_DatabaseDataSet
  3. Execute the query, this should do the work

Upvotes: 1

Related Questions