I have developed a c# software project which used MSSQL .mdf database. Actually at development time I connected my application logic from the SQL Server Administrator.
My Specific Question is:
How can I deploy the application on to another computer without installing the SQL Server management Studio, just access the .mdf database only?
The current development connection string is:
<add name="LocalString" connectionString="server=(local); Database=MYDB; user id=xxx;password=xxxxx"
providerName="System.Data.SqlClient" />
Note that I am using App.Config connection string for entire system.