4
Answers

What is Dry im mvc

Sanwar Ranwa

Sanwar Ranwa

7y
177
1
What is Dry im mvc
Answers (4)
1
Vipin Mittal

Vipin Mittal

NA 699 3.6k 7y
dry do not repeat yourself
Accepted
2
Altaf Ansari

Altaf Ansari

NA 1.4k 27.4k 7y
Please Refer :
 
http://www.c-sharpcorner.com/UploadFile/dhananjaycoder/keep-your-code-dry/ 
1
Sanwar Ranwa

Sanwar Ranwa

NA 1.1k 1.6k 7y
Thanks everyone 
 
1
Gajendra Jangid

Gajendra Jangid

NA 585 3.6k 7y
DRY just means "Don't Repeat Yourself". Make sure that when you write code, you only write it one time. If you find yourself writing similar functionality in all of your Controller classes, make a base controller class that has the functionality and then inherit from it, or move the functionality into another class and call it from there instead of repeating it in all the controllers