show/hide this revision's text 2 added 79 characters in body

One reason - separating your domain model from your database model.

What I do is use Test Driven Development so I write my UI and Model layers first and the Data layer is mocked, so the UI and model is build around domain specific objects, then later I map these object objects to what ever technology I'm using the the Data Layer. Is Its a very bad idea to let the database structure determine the design of your app, application. Where possible write the app first and think about let that influence the data laterstructure of your database, not the other way around.

    Post Made Community Wiki by Community
show/hide this revision's text 1

One reason - separating your domain model from your database model.

What I do is use Test Driven Development so I write my UI and Model layers first and the Data layer is mocked, so the UI and model is build around domain specific objects, then later I map these object to what ever technology I'm using the the Data Layer. Is a very bad idea to let the database determine the design of your app, write the app first and think about the data later.