(third and last part)
In general I have the following in mind:
Database <-> LisaDataObject <-> Business Objects <-> Controls
One would ask perhaps: why not bind data to the controls directly?
First is that I don't like the VS wizards. They create code-behind-behind and I don't want to miss important parts of code which is essential for my application. Everything is tightly packed together and allows me for maximum flexibility (I change table and columnnames in the database quite often in this stage, I know I should have this stuff sorted out already but it's hard to decide on naming conventions).
Last reason for this approach is that now I can use 2 or 3 lines of code to do a lot of work so it's clean as well.
Would this be a acceptable approach from the perspective of a .NET developer?
In general I have the following in mind:
Database <-> LisaDataObject <-> Business Objects <-> Controls
One would ask perhaps: why not bind data to the controls directly?
First is that I don't like the VS wizards. They create code-behind-behind and I don't want to miss important parts of code which is essential for my application. Everything is tightly packed together and allows me for maximum flexibility (I change table and columnnames in the database quite often in this stage, I know I should have this stuff sorted out already but it's hard to decide on naming conventions).
Last reason for this approach is that now I can use 2 or 3 lines of code to do a lot of work so it's clean as well.
Would this be a acceptable approach from the perspective of a .NET developer?
Comment