Hi,
I am using a layered architecture with the Entity Framework as my datalayer with a bunch of repositories on top which contain the Linq-To-Entities queries. The data layer is one project, next to that I have a Services layer and the interface, which is a website.
I want my website to be responsible of specifying the connectionstring for my entity model. How do I do this?
I am using a singleton method to get to my entity repository, which is located inside the datalayer.
Thanks