Just wondering what is a better way to configure my model?
I like the Fluent API, because then my POCO's are not full of EF specific attributes.
Is there anything you can't do with the Fluent API that you can with attributes?
|
Just wondering what is a better way to configure my model? I like the Fluent API, because then my POCO's are not full of EF specific attributes. Is there anything you can't do with the Fluent API that you can with attributes?
| |||||
feedback
|
|
Everything what you can configure with DataAnnotations is also possible with the Fluent API. The reverse is not true. So, from the viewpoint of configuration options and flexibility the Fluent API is "better". Configuration examples (for sure not a full list) which are possible in the Fluent API but not with DataAnnotations (as far as I can see):
Edit: Microsoft considers the Fluent API as an "advanced feature" (Quote from here):
But in my opinion you reach the limitations of DataAnnotations very quickly (except perhaps for extremely simple object models). If you cannot fine tune your model with DataAnnotations anymore your last resort is to follow the default mapping conventions (by naming your properties according to those rules). Currently you cannot overwrite the conventions (only disable them; MS announced to give configuration options for the conventions in future EF releases). But if you don't want to be forced by the mapping conventions when you define your object model, your only option then is the Fluent API. Learning the Fluent API is almost a Must imho, the DataAnnotations are a nice-to-have for simple applications. | |||||||||
feedback
|