EF is Database driven development?

300 Views Asked by At

Is 'Database Driven Development in windows' same as Application development uses Entity Framework. or is this (DB Driven Dev) has to use different framework or design?

Please comment. Thanks.

1

There are 1 best solutions below

1
Joe Brunscheon On

Database Driven Design is basically where you have the database design done first, then you program an application based upon the database. Database driven design

Entity Framework is a Object Relational Mapping tool. Using EF, you can do a "code-first" database design where EF will create your database for you, but that's still not database driven design.