views:

25

answers:

0

I'm working on branching my services of my MVC solution to a separate project, which includes a MembershipProvider wrapper. The problem is that when doing my unit testing, the provider information being used isn't coming from the MVC project's Web.Config file (e.g. the connection string), but some default settings. I have the feeling, that this is caused by me moving the service out of the MVC project.

How can I link the MembershipProvider back to the MVC project's Web.Config or is the only solution to leave that particular service inside the MVC project?