Friday, July 10, 2015

MVC Repository Pattern


Repository pattern is a very useful and powerful pattern when manipulating data. It enhance the maintainability and testability, as the data is accessed and edited from a unique access point which is the Repository. In this application, I used it inside an MVC5 app. So, whenever you want to make changes to the way you manipulate the data, you just change code in the repository, and you do that once.




https://www.youtube.com/watch?v=SExnyXhX3gk

No comments: