Click here to Skip to main content
15,881,581 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have a grid base on Telerik MVC extensions using batch edit, but I don't know how create the Repository base on a table of my database instead of the class used in the example named EditableProduct. There are the example based on EditableProduct from Telerik Demos http://demos.telerik.com/aspnet-mvc/razor/grid/editingbatch?theme=hay

How I can create the Repository based on a table of my database SQL server 2008? Actually I can updated this table using a View without Telerik extension.
Posted
Updated 18-Jan-13 11:29am
v2

1 solution

Repository pattern is one of the design pattern which is most frequently used in Data access layer. This provides an abstraction to underlying database. This is also useful when database is not ready and we want to test the application by building an stub.

So repository pattern provides testability, abstration and  dependency injection.


Please go through the link you get a clear idea about the repository pattern and how to implement this in your MVC project
http://www.expertbloggingon.net/post/2011/11/23/CSharp-Repository-Pattern-Design-Patterns-in-Action.aspx

http://blog.lowendahl.net/?p=249


Note: You can impement all the CRUD functionalities for the telerik without Repository pattern.&amp;lt;/pre&amp;gt;&lt;/pre&gt;</pre>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900