My MVC application is consuming a WCF service to interact with the database.
That means, a controller action is calling a WCF operation to perform SELECT or CRUD operations in database.
However, I have now enabled Default Membership Provider for MVC site. But I dont know how to enable membership provider to interact with database using WCF service. Also, I do not want to specify connection string in MVC app (as its already been there in WCF).
How can we achieve this?