Repository Design Pattern is a way to encapsulate repetitive data access code.
Repository Pattern is effective data access design pattern when we want to:
Increase testability of the application. Make test repeatable without touching the data source;...
Home » Archives for June 2014
Repository Design Pattern : Implementing Generics, MOQ, MSTEST In ASP.NET MVC
in
ASP.NET MVC,
Best Practices,
C#,
Design Patterns,
Moq
- on Thursday, June 26, 2014
- No comments
Code Review : A Simple Guide
in
Best Practices
- on Monday, June 23, 2014
- No comments
What is a Code Review?
A.KA. – Code Analysis Review. It is an ongoing process to allow developers to improve code quality. This is defining moment where they can spot code smells, serious vulnerabilities and be able to promote readability,...
Asp.Net MVC and CSS : How to keep the footer stay at the bottom without breaking BootStrap features
in
ASP.NET MVC,
BootStrap,
CSS
- on Wednesday, June 11, 2014
- 3 comments
By default asp.net mvc provides footer but the problem is it does stay at the bottom of the page. There's a solution provided by BootStrap but it is sticky. We want something that is relative to the page.
The solution presented here is compatible in...
Object Oriented Programming Concepts
in
OOP
- on Sunday, June 08, 2014
- No comments
OOP is a programming paradigm that represents the concept of "objects" that have data fields (attributes that describe the object) and associated procedures known as methods. Objects, which are usually instances of classes, are used to interact with...