Simple-MVC-Project

There is a simple mvc project. Code examples of many concepts are available. I used code first with entity framework 6 and MSSQL as the database. I stopped this project because I started a bigger project. Those who want to contribute can be found. I'll be sharing it when my new project is over. Stay Tuned :)

Installation and Requirements

İf you want to develop a MVC project, I suggest microsoft platform such as ASP.Net. Here is link of Visual Studio. Visual Studio - Download

A good resource - Click the link for more

What is MVC? Why use MVC? It's a very vast topic to explain. I will explain what MVC is. It’s just a three layer architecture where M stands for MODEL, V stands for VIEW, and the most important part in this architecture is CONTROLLER, like a Hero of any film. Thus, every layer in MVC is assigned with a unique responsibility. So, the View is for the look and feel as well as for positioning what the end user will actually see. The model supplies the data and business logic. So, the models are nothing but just a class, like employee, student etc. and a model can interact with the data access layer, some kind of service, like WCF Service or Web Service, which gives the data. The controller is actually the heart of MVC and as I mentioned above, like a film Hero, it deals with both the layers. This is why the controller is also called the coordinator between the Model and View. (Click for more)