Hello guys,
I have a code:
EntityConnectionStringBuilder efb = new EntityConnectionStringBuilder(ConfigurationManager.ConnectionStrings["AutoLotEntities"].ConnectionString); SqlConnectionStringBuilder newBuilder = new SqlConnectionStringBuilder(efb.ProviderConnectionString); newbuilder.UserID = "new_user"; sqlcsBuilder.Password = "new_pass";so, I have got connection string and changed therein userId and password.
now how should I upgrade/save connection string in app.config?