Modern Data Access with Entity Framework Core: Database Programming Techniques for .NET, .NET Core, UWP, and Xamarin with C#
C# developers, here’s your opportunity to learn the ins-and-outs of Entity Framework Core, Microsoft’s recently redesigned object-relational mapper. Benefit from hands-on learning that will teach you how to tackle frustrating database challenges, such as workarounds to missing features in Entity Framework Core, and learn how to optimize the performance of your applications, head-on!

Modern Data Access with Entity Framework Core teaches best practices, guidance, and shortcuts that will significantly reduce the amount of resources you internally dedicate to programming data access code. The proven methods and tools taught in this book, such as how to get better performance, and the ability to select the platform of your choice, will save you valuable time and allow you to create seamless data access. Dive into succinct guidance that covers the gamut— from installing Entity Framework Core, reverse engineering, forward engineering (including schema migrations), and data reading and modification with LINQ, Dynamic LINQ, SQL, Stored Procedures, and Table Valued Functions- to using third-party products such as LINQPad, Entity Developer, Entity Framework Profiler, EFPlus, and AutoMapper. You'll also appreciate excerpts of conceptual software architecture discussion around Entity Framework Core that might otherwise take years to learn.

What You'll Learn

• Understand the core concepts of Entity Framework Core, as well process models for existing databases (reverse engineering) and the generation of database schemas from object models (forward engineering)

• Study real-world case studies for hands-on EF Core instruction

• Get up to speed with valuable database access scenarios and code samples

• Discover workarounds to augment missing features in Entity Framework Core

• Use Entity Framework Core to write mobile apps
• Bonus online appendix covers Entity Framework Core 2.1 release updates

Who This Book Is For

Software developers who have basic experience with .NET and C#, as well as some understanding of relational databases. Knowledge of predecessor technologies such as ADO.NET and the classic ADO.NET Entity Framework is not necessary to learn from this book.

1128475475
Modern Data Access with Entity Framework Core: Database Programming Techniques for .NET, .NET Core, UWP, and Xamarin with C#
C# developers, here’s your opportunity to learn the ins-and-outs of Entity Framework Core, Microsoft’s recently redesigned object-relational mapper. Benefit from hands-on learning that will teach you how to tackle frustrating database challenges, such as workarounds to missing features in Entity Framework Core, and learn how to optimize the performance of your applications, head-on!

Modern Data Access with Entity Framework Core teaches best practices, guidance, and shortcuts that will significantly reduce the amount of resources you internally dedicate to programming data access code. The proven methods and tools taught in this book, such as how to get better performance, and the ability to select the platform of your choice, will save you valuable time and allow you to create seamless data access. Dive into succinct guidance that covers the gamut— from installing Entity Framework Core, reverse engineering, forward engineering (including schema migrations), and data reading and modification with LINQ, Dynamic LINQ, SQL, Stored Procedures, and Table Valued Functions- to using third-party products such as LINQPad, Entity Developer, Entity Framework Profiler, EFPlus, and AutoMapper. You'll also appreciate excerpts of conceptual software architecture discussion around Entity Framework Core that might otherwise take years to learn.

What You'll Learn

• Understand the core concepts of Entity Framework Core, as well process models for existing databases (reverse engineering) and the generation of database schemas from object models (forward engineering)

• Study real-world case studies for hands-on EF Core instruction

• Get up to speed with valuable database access scenarios and code samples

• Discover workarounds to augment missing features in Entity Framework Core

• Use Entity Framework Core to write mobile apps
• Bonus online appendix covers Entity Framework Core 2.1 release updates

Who This Book Is For

Software developers who have basic experience with .NET and C#, as well as some understanding of relational databases. Knowledge of predecessor technologies such as ADO.NET and the classic ADO.NET Entity Framework is not necessary to learn from this book.

59.99 In Stock
Modern Data Access with Entity Framework Core: Database Programming Techniques for .NET, .NET Core, UWP, and Xamarin with C#

Modern Data Access with Entity Framework Core: Database Programming Techniques for .NET, .NET Core, UWP, and Xamarin with C#

by Holger Schwichtenberg
Modern Data Access with Entity Framework Core: Database Programming Techniques for .NET, .NET Core, UWP, and Xamarin with C#

Modern Data Access with Entity Framework Core: Database Programming Techniques for .NET, .NET Core, UWP, and Xamarin with C#

by Holger Schwichtenberg

Paperback(1st ed.)

$59.99 
  • SHIP THIS ITEM
    Not Eligible for Free Shipping
  • PICK UP IN STORE
    Check Availability at Nearby Stores

Related collections and offers


Overview

C# developers, here’s your opportunity to learn the ins-and-outs of Entity Framework Core, Microsoft’s recently redesigned object-relational mapper. Benefit from hands-on learning that will teach you how to tackle frustrating database challenges, such as workarounds to missing features in Entity Framework Core, and learn how to optimize the performance of your applications, head-on!

Modern Data Access with Entity Framework Core teaches best practices, guidance, and shortcuts that will significantly reduce the amount of resources you internally dedicate to programming data access code. The proven methods and tools taught in this book, such as how to get better performance, and the ability to select the platform of your choice, will save you valuable time and allow you to create seamless data access. Dive into succinct guidance that covers the gamut— from installing Entity Framework Core, reverse engineering, forward engineering (including schema migrations), and data reading and modification with LINQ, Dynamic LINQ, SQL, Stored Procedures, and Table Valued Functions- to using third-party products such as LINQPad, Entity Developer, Entity Framework Profiler, EFPlus, and AutoMapper. You'll also appreciate excerpts of conceptual software architecture discussion around Entity Framework Core that might otherwise take years to learn.

What You'll Learn

• Understand the core concepts of Entity Framework Core, as well process models for existing databases (reverse engineering) and the generation of database schemas from object models (forward engineering)

• Study real-world case studies for hands-on EF Core instruction

• Get up to speed with valuable database access scenarios and code samples

• Discover workarounds to augment missing features in Entity Framework Core

• Use Entity Framework Core to write mobile apps
• Bonus online appendix covers Entity Framework Core 2.1 release updates

Who This Book Is For

Software developers who have basic experience with .NET and C#, as well as some understanding of relational databases. Knowledge of predecessor technologies such as ADO.NET and the classic ADO.NET Entity Framework is not necessary to learn from this book.


Product Details

ISBN-13: 9781484235515
Publisher: Apress
Publication date: 06/28/2018
Edition description: 1st ed.
Pages: 644
Product dimensions: 7.01(w) x 10.00(h) x (d)

About the Author

Dr. Holger Schwichtenberg is a .NET MVP with more than 20 years of experience as a developer and trainer. He is currently a technical lead with the German company IT-Visions, where he consults and trains at companies throughout Europe. He also serves as a software architect for 5Minds IT-Solutions. Holger is a huge fan of Entity Framework and Entity Framework Core and regularly speaks about both. He has used EF in projects of all sizes, most recently, on a big data project containing billions of records. He is a prolific writer, having published more than 65 books and 1,000 technical articles in well-known IT professional and developer journals, including MSDN. He has presented at events such as TechEd Europe, Microsoft IT Forum, Advanced Developer Conference, Microsoft Launch, MSDN Technical Summit, and others. Holger has a Ph.D. in business informatics.


Table of Contents

Chapter 1: Introducing Entity Framework Core.- Chapter 2: Installing Entity Framework Core.- Chapter 3: Concepts of Entity Framework Core.- Chapter 4: Reverse Engineering for Existing Databases (Database First Development).- Chapter 5: Forward Engineering for New Databases.- Chapter 6: Customizing the Database Schema.- Chapter 7: Database Schema Migrations.- Chapter 8: Read Data with LINQ.- Chapter 9: Object Relationships and Loading Strategies.- Chapter 10: Inserting, Deleting, and Modifying Records.- Chapter 11: Concurrency (Preventing Conflicts).- Chapter 12: Logging.- Chapter 13: Asynchronous Programming.- Chapter 14: Dynamic LINQ Queries.- Chapter 15: Read and Modify Data with SQL, Stored Procedures, and Table Valued Functions.- Chapter 16: Tips and Tricks for Mapping.- Chapter 17: Performance Tuning.- Chapter 18: Software Architecture with Entity Framework Core.- Chapter 19: Commercial Tools.- Chapter 20: Additional Components.- Chapter 21: Appendix A: Case Studies.- Chapter 22: Appendix B: Internet Resources.- Chapter 23: Appendix C: New Features in Entity Framework Core 2.1.



From the B&N Reads Blog

Customer Reviews