tallpaul
tallpaul

Reputation: 1513

Add options to data source in Visual Studio 2013

I am trying to create a SQL Server Compact 4.0 database to a new project in Visual Studio Ultimate 2013.

I have followed these steps:

  1. Created a Entity Data model diagram (.edmx)
  2. Right-click on empty area -> Generate Database From Model... -> New Connection...
  3. In the Choose Data Source dialog box I only have SQL Server, SQL Server DB file and Other

enter image description here

I have tried repairing the SQL Server Compact 4.0 installation but nothing changes. Where are the options for this dialog box configured?

Upvotes: 0

Views: 92

Answers (1)

ErikEJ
ErikEJ

Reputation: 41799

You need to install the SQL Server Compact Toolbox, which will enable the SQL Server Compact DDEX provider for the Data Source dialog. Go to the About screen in the Toolbox and Install DDEX providers, a VS restart may be required.

Upvotes: 1

Related Questions