Book Image

Code-First Development with Entity Framework

By : Sergey Barskiy
Book Image

Code-First Development with Entity Framework

By: Sergey Barskiy

Overview of this book

<p>Entity Framework Code-First enables developers to read and write data in a relational database system using C# or VB.NET. It is Microsoft's answer to demand for an ORM from .NET developers.</p> <p>This book will help you acquire the necessary skills to program your applications using Entity Framework. You will start with database configuration and learn how to write classes that define the database structure. You will see how LINQ can be used with Entity Framework to give you access to stored data. You will then learn how to use Entity Framework to persist information in a Relational Database Management System. You will also see how you can benefit from writing ORM-based .NET code. Finally, you will learn how Entity Framework can help you to solve database deployment problems using migrations.</p>
Table of Contents (15 chapters)
Code-First Development with Entity Framework
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Summary


In this chapter, you learned how we can configure persistence layer details for entities and classes that map to database structures, specifically tables. We learned that we can use attributes, entity type configuration classes or model builder APIs to perform this task. We discovered that we can make columns nullable by using appropriate nullable types in .NET. We looked at mappings between .NET types and SQL Server types as an example of an RDMBS. We discovered that primitive types, such as numbers and strings, have corresponding property configuration classes that expose methods, allowing us to make those properties required, or configure the maximum allowable length. We learned that using the EntityTypeConfiguration class allows us to neatly organize our configuration code. We saw that this class exposes the API that affords developers an opportunity to configure all the properties in a fluent manner.

We also learned that classes can have relationships between each other. We saw...