Book Image

Mastering Entity Framework

By : Rahul Rajat Singh
Book Image

Mastering Entity Framework

By: Rahul Rajat Singh

Overview of this book

<p>Data access is an integral part of any software application. Entity Framework provides a model-based system that makes data access effortless for developers by freeing you from writing similar data access code for all of your domain models.</p> <p>Mastering Entity Framework provides you with a range of options when developing a data-oriented application. You’ll get started by managing the database relationships as Entity relationships and perform domain modeling using Entity Framework. You will then explore how you can reuse data access layer code such as stored procedures and table-valued functions, and perform various typical activities such as validations and error handling. You’ll learn how to retrieve data by querying the Entity Data Model and understand how to use LINQ to Entities and Entity SQL to query the Entity Data Model.</p>
Table of Contents (19 chapters)
Mastering Entity Framework
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Model validations using data annotations


We can also perform validations using data annotations on your entity class. This is even possible when Entity Framework is generating the entities. The major benefit of using data annotation-based validations is that it makes it very easy for us to perform validations by simply adding attributes to model properties. It is also helpful in scenarios where we want to use POCO generators with our Database First approach, where we will not have the partial methods made available to perform the validations.

Tip

Validations using data annotations can also be used in Entity Framework's Code First approach to perform model validations.

To perform model validations using data annotations, we need to add the validation attributes to our entity class. The first question that comes to mind now is how can we add the attributes to the entity classes since our entity classes are autogenerated by Entity Framework.

To add the validation attributes to our generated entity...