Has anyone read this article on www.asp.net titled "Implementing the Repository and Unit of Work Patterns in an ASP.NET MVC Application (9 of 10)"
In the article it says: "This generic repository will handle typical CRUD requirements. When a particular entity type has special requirements, such as more complex filtering or ordering, you can create a derived class that has additional methods for that type."
Can anyone explain in detail how can I create a derived class and use these additional methods? Do I put additional methods in the generic repository as virtual methods?
Please help, I cannot figure out how to do this. Thanks a lot.