I am working on an ASP.net group project of 5 people and we all have an identical database in all of our machine's SQL Server. I'm trying to implement ADO.Net Entity Framework for that database. But how can my other partners use my solution to their machine since the Data Source will be different for everyone? Is there a way to make entity framework supporting all other Data Source on different machines?
For example, My project's web.config file contains a connection string where Data Source = XYZ/ABC. Though my partners have the same database named "PQR", their "Data Source" will be different.
What should I do in this situation?