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

Self-test questions


Q1. You would like to define a column to store a number without a fractional value, but you want to make the value optional. What .NET type should you use for such property?

  1. Decimal

  2. Decimal?

  3. Int

  4. Int?

Q2. If you want to make the first name column to be non-nullable in the database, you can rely on default conventions in Entity Framework and avoid all configuration, true or false?

Q3. You cannot override conventions that are preloaded with Entity Framework, such as the one that makes all foreign key constraints be setup to cascade on delete, true or false?

Q4. Which of the following is not a type of relationship?

  1. One-to-Many

  2. Many-to-Many

  3. One-or-Zero-to-Many

  4. Many-to-Default

Q5. The best way to configure all properties in all classes is to list them one by one in OnModelCreating method of the context, true or false?

Q6. If you do not configure any additional information for string properties, what type will be used in the SQL Server database?

  1. NVARCHAR(4000)

  2. NVARCHAR(MAX)

  3. VARBINARY(MAX)

  4. VARCHAR...