V
vefman
I have a question about databinding. Why are people binding datasets?
It binds your implementation to your interface. This breaks OOP
principles, and it is bad practice. An interface and implementation
should be separate from each other, so if you can make changes to them
independent of each other. The only reason I see why this technique is
practiced is because it is easy.
It binds your implementation to your interface. This breaks OOP
principles, and it is bad practice. An interface and implementation
should be separate from each other, so if you can make changes to them
independent of each other. The only reason I see why this technique is
practiced is because it is easy.