I have already a MVC-webapplication, I wounder should I create a new WCF Service Appication or should I insert a serivce in same webapp udner the folder "Model"?
What is the best solution?
I have already a MVC-webapplication, I wounder should I create a new WCF Service Appication or should I insert a serivce in same webapp udner the folder "Model"?
What is the best solution?
If the WCF service is exposing models from your MVC project, I would stick it it the same project. If it has logic pertained to code outside the MVC solution, I would create a separate application.