My team is writing a large scale business website in ASP.NET MVC 4 using the database-first approach. Does anyone know if it's possible to have data annotations automatically generated based on the database schema? It seems redundant to have to manually write the "buddy" metadata classes containing the data annotations when the framework should be aware of a database column's properties and make these part of the POCO classes it generates. Any suggestions would be greatly appreciated!
|
|
Take a look at LINQ to SQL. You can use it to create a .dbml file in a graphical editor by dragging the tables from the server explorer. Here's the MSDN How to: Create LINQ to SQL Classes in a Web Project |
|||||||||||
|
|
1) The framework does a good job of extrapolating data annotation based on table structure, but they won't be perfect. 2) Sadly, when you reach a point when you want to customize more than the framework, you are stuck with Buddy classes. They're a bit tedious but so far the best method I've found for customizing data annotation. 3) All too often, I find myself gravitating toward custom classes and away from generated POCO's. The reason is usually the differences between storing and displaying. In entry screens
|
|||
|
|
|
Use the Database First approach with the Entity Framework. You can generate the entity model from an existing database using the entity data model wizard. See http://msdn.microsoft.com/en-us/data/jj206878 |
|||||||
|
|
@Kerezo covers pretty much exactly what you want to do here: Add Data Annotation To Entity Framework(Or Linq to SQL) generated class It is not possible to auto generate the data annotations automatically. |
|||
|
|
