I would like to know how do i incorporate a feature like wcf within and MVC application. My current idea of the architecture is as follows:
EntityFramework -> ASP.NET MVC (Views)
EntityFramework -> ASP.NET MVC with WCF endpoints -> mobile Apps.
EntityFramework -> ASP.NET MVC -> Silverlight (using .NET RIA Services).
So I d have 1 asp.net mvc project. create my DAL in the models folder. have my controller access that DAL. Add a wcf file somewhere and have that call to the DAL. Some parts of the application i have a silverlight app that opens and uses the asp.net membership information and other related data.
Please correct me. I have no idea what I m doing.