When I'm creating Entity Data Model, there's a question in the wizard like "would you like to include sensitive data in connection string?" I am choosing 'No, I'll set it in my application code'. So my question is, how to set that?
And the other problem is, that I NEVER had a model constructor with connectionstring parameter so I can't do something like that:
MyEntity model = new MyEntity(connectionstring)
I have only non-parameter constructor.