Programming Entity Framework and over one million other books are available for Amazon Kindle. Learn more

FREE Shipping on orders over $25.

Used - Very Good | See details
 
   
Sell Us Your Item
For a $0.50 Gift Card
Trade in
Have one to sell? Sell yours here
Start reading Programming Entity Framework on your Kindle in under a minute.

Don't have a Kindle? Get your Kindle here, or download a FREE Kindle Reading App.
Sorry, this item is not available in
Image not available for
Color:
Image not available

To view this video download Flash Player

 

Programming Entity Framework [Paperback]

Julia Lerman
4.7 out of 5 stars  See all reviews (28 customer reviews)


Available from these sellers.


Free Two-Day Shipping for College Students with Amazon Student

Formats

Amazon Price New from Used from
Kindle Edition $25.07  
Paperback, Bargain Price $22.00  
Paperback, February 10, 2009 --  
Like this book? Find similar titles in the O'Reilly Bookstore.
There is a newer edition of this item:
Programming Entity Framework: Building Data Centric Apps with the ADO.NET Entity Framework Programming Entity Framework: Building Data Centric Apps with the ADO.NET Entity Framework 4.2 out of 5 stars (46)
$35.55
In Stock.

Book Description

February 10, 2009 059652028X 978-0596520281 1
If you use Entity Framework in Visual Studio 2008 and .NET 3.5, this is the book you want. Programming Entity Framework, 1st Edition offers experienced developers a thorough introduction to Microsoft's core framework for modeling and interacting with data in .NET applications. This hands-on tour provides a deep understanding of Entity Framework's architecture and APIs, and explains how to use the framework in a variety of applications built with Visual Studio 2008 and .NET 3.5.

From the Entity Data Model (EDM) and Object Services to EntityClient and the Metadata Workspace, this highly acclaimed first edition covers it all.

  • Understand the core concepts you need to make the best use of the Entity Framework (EF) in your applications
  • Learn to query your data, using either LINQ to Entities or Entity SQL
  • Create Windows Forms, WPF, and ASP.NET applications
  • Build ASMX web services and WCF services
  • Use Object Services to work directly with your entity objects
  • Delve into model customization, relationship management, change tracking, data concurrency, and more

One important note: while many of the lessons from this book will continue to be valuable as you move to .NET 4, the thoroughly revised second edition of Programming Entity Framework specifically targets Visual Studio 2010 and .NET 4 -- where there have been many advancements and additions to the framework.




Editorial Reviews

Amazon.com Review

Programming Entity Framework is a thorough introduction to Microsoft's new core framework for modeling and interacting with data in .NET applications. This highly-acclaimed book not only gives experienced developers a hands-on tour of the Entity Framework and explains its use in a variety of applications, it also provides a deep understanding of its architecture and APIs. Although this book is based on the first version of Entity Framework, it will continue to be extremely valuable as you shift to the Entity Framework version in .NET Framework 4.0 and Visual Studio 2010. From the Entity Data Model (EDM) and Object Services to EntityClient and the Metadata Workspace, this book covers it all.

Working with Object Services

(Excerpt from Chapter 9)

Most of the work that you will do in the Entity Framework will involve the objects that are based on the entities in your Entity Data Model (EDM). The Object Services API is the part of the framework that creates and manages these objects. Although you have worked with Object Services in much of the code you wrote in earlier chapters, and you have touched on a variety of its topics along the way, you haven't yet seen the big picture. The API has a lot of tools that you can access directly to take charge of your entity objects.

This chapter is devoted to giving you a better understanding of the Object Services API: what it is responsible for, what it does under the covers, and some of the ways that you can take advantage of it.
You will learn about how queries are processed and turned into objects, how these objects are managed during their life cycle, and how Object Services is responsible for the way entities are related to each other. You will see how the ObjectQuery works and how it relates to LINQ to Entities queries under the covers. This chapter will also give you a better understanding of how Object Services manages an entity's state, beyond what you learned in Chapter 5.
As you become more familiar with the purpose, features, and implementation of Object Services, you will be better prepared to solve some of the challenges you will face as you move from using the "drag-and-drop" application-building features that Visual Studio provides to building enterprise applications where you need to have much more control over how all of the pieces of the application interact with one another.

Where Does Object Services Fit into the Framework?


Object Services is at the top of the food chain in the Entity Framework. The namespace for this API is System.Data.Objects, and it provides all of the necessary functionality for generating and interacting with the objects that are shaped by the conceptual layer and are populated from a data store.
As shown in the figure, Object Services initially processes your LINQ to Entities and ObjectQuery queries, as well as materializes the query results into objects.

Object Services as it relates to the rest of the Entity Framework stack
You can divide the core functionality of Object Services into seven areas:
1) Query processing
2) Object materialization
3) Object management
4) Object relationship management
5) Object state management
6) Database Manipulation Language (DML) command processing
7) Additional features

About the Author

Julia Lerman is the leading independent authority on the Entity Framework and has been using and teaching the technology since its inception two years ago. She is well known in the .NET community as a Microsoft MVP, ASPInsider and INETA Speaker. She is a prolific blogger, a frequent presenter at technical conferences around the world, including DevConnections and TechEd and she writes articles for many well-known technical publications.

Product Details

  • Paperback: 832 pages
  • Publisher: O'Reilly Media; 1 edition (February 10, 2009)
  • Language: English
  • ISBN-10: 059652028X
  • ISBN-13: 978-0596520281
  • Product Dimensions: 7 x 1.7 x 9.1 inches
  • Shipping Weight: 2.4 pounds
  • Average Customer Review: 4.7 out of 5 stars  See all reviews (28 customer reviews)
  • Amazon Best Sellers Rank: #442,044 in Books (See Top 100 in Books)

More About the Author

Julia Lerman is the leading independent authority on the Entity Framework and has been using and teaching the technology since its inception in 2006. She is the author of the highly acclaimed book, Programming Entity Framework, 1st and 2nd editions and is well known in the .NET community as a Microsoft MVP, ASPInsider, and INETA Speaker. Julia is a frequent presenter at technical conferences around the world and writes articles for many well-known technical publications including the Data Points column in MSDN Magazine. Julia tweets at @julielerman and blogs at http://thedatafarm.com/blog.

Customer Reviews

The book is very well organized and is a good read. T. Anderson  |  12 reviewers made a similar statement
If you are learning EF and do not have this book, just buy it! Keith S. Safford  |  10 reviewers made a similar statement
NET Entity Framework, this is the book to have. Dennis Rongo  |  7 reviewers made a similar statement
Most Helpful Customer Reviews
27 of 31 people found the following review helpful
Format:Paperback|Amazon Verified Purchase
This is definitely the book to have by your side if you are programming with the ADO.NET Entity Framework 1.0.

The author touches on a ton of subjects that include: Data Binding with Windows Forms and WPF Applications, Using Stored Procedures with the EDM, LINQ to Entities Queries, Customizing Entities, Using the ASP.NET EntityDataSource Control, Using Entities with Web and WCF Services, Using the Entity Framework in n-Tier ASP.NET Applications and n-Tier Client-Side Applications, Handling Entity Framework Exceptions, Performance, Security, Multithreaded Applications, and much more.

There is a lot covered in this book. One of the coolest things about this book is the amount of new possibilities it introduces. Many which I would not have considered without seeing them in this book.

I also like that the book covers the architectural aspects of integrating EF into several different types of architectures.

The author drills into each subject enough to get a thorough understand. With all the material covered, that is rare, but the book is an 800 page whopper.

I have been working with the EF 1.0 since its release in August and can say that this book has more information jammed into it than all the other resources I have been using combined.

The book includes VB.NET and C# code examples.

The book has a support site (google for learnentityframework) with the code samples and the database scripts available. The downloaded code is also in both VB.NET and C#. It is well organized and very usable.

The book is very well organized and is a good read. The author has a good writing style.

All in all, I do not think you can do without this book if you are going to do anything besides play around with the Entity Framework.
Was this review helpful to you?
12 of 12 people found the following review helpful
4.0 out of 5 stars Your Train to the Data Access Future has Arrived! December 6, 2009
By A Customer
Format:Paperback
Over the past 20 years of my career as a software developer, application architects have recommended that enterprise applications be developed using multiple tiers to separate the concerns of the user interface, business logic and data access layers. The challenge for programmers has been to determine how one would actually build and maintain such a beast. Microsoft has addressed part of the data portion of this architecture recommendation by introducing the "Entity Framework" (EF) to the .Net technology stack.

In most cases, databases are designed for the database administrator and not the application developer. The EF allows a programmer to add an Entity Data Model (EDM) to a client application. With an EDM, programmers can create application centric object interfaces to their data sources without having to concern themselves with the nuances of the underlying data structures. The EF takes care of translating these application objects to the SQL statements that interact with the database. So, what will lead us on this journey?

The "Programming Entity Framework" book can be divided into two major sections. Chapters 1-14 provides an introduction to all the major EF concepts while Chapters 15-23 covers advanced topics. There is a website at http://learnentityframework.com/learnentityframework/ that supports the book and allows you to download database scripts and sample applications. (As a side note, I learned from this site that the author has agreed to update her book to cover changes introduced in the 2010 version of Visual Studio.)

I like the fact that Ms. Lerman provides both VB and C# code side by side with all of her examples (my personal goal is to become fluent in both languages). The book is peppered with side notes (designated by three paw prints) that make some clarification or add pertinent information to the page.

I did a search of alternative books that cover this same subject. I investigated the online information provided by Microsoft. None of the books I researched (as well as the Microsoft articles online) came close to the scope and readability of this book. Lerman does a great job of balancing her independent point of view on this subject with the insider tips and information that make for a good read.

The myriad of tools and components contained in the EF are now a strategic part of Microsoft's data access strategy going forward. So don't get left behind. I recommend "Programming Entity Framework" as your train to the data access future. I guess that would make Julia Lerman your Conductor and Engineer on this trip as well ... ;-).
Comment | 
Was this review helpful to you?
6 of 6 people found the following review helpful
5.0 out of 5 stars A real page turner! February 28, 2009
Format:Paperback|Amazon Verified Purchase
I'm a seasoned VB6/PHP/Green Screen developer who has floated around .NET but never gone beyond tinkering. Entity Framework (and LINQ and MVC) have convinced me that it's time to jump fully on the .NET wagon.

I'm loving this book because while it assumes the reader knows how to write a program, it doesn't assume that the reader is a .NET programmer. It explains Entity Framework excellently while also explaining Visual Studio/.NET concepts succinctly, without wasting the reader's time explaining what an integer is.

The many pointers to web resources for further information are greatly appreciated and increase the book's value to someone, like me, coming to .NET rather late in the game without bogging down the book for seasoned .NET programmers.

Finally, the author's use of a "brown field" application for the examples, complete with "legacy typos" and examples of how EF can free you of legacy design flaws while leaving the legacy intact show that the author has been in the trenches writing real code and has a great deal of wisdom beyond Entity Framework to share.
Comment | 
Was this review helpful to you?
Most Recent Customer Reviews
5.0 out of 5 stars Great Book, Tough topic, Awesome Job
Entity Framework is a large application with lots of corners. Julie does a great job of covering all those areas in a way that let's you go back over time and keep getting good... Read more
Published 18 months ago by Peter Kellner
4.0 out of 5 stars Good book, but could have been even better
This book is definitely the best book about EF on the market. Programming EF was second book I read about EF. After reading Jennings's Professional ADO.NET 3. Read more
Published on August 23, 2010 by Timmy_A
5.0 out of 5 stars Comprehensive book on EF
If you're looking into learning ADO.NET Entity Framework, this is the book to have. The book is concise, very detailed, and well-written-- and that's usually rare to find in most... Read more
Published on May 26, 2010 by Dennis Rongo
5.0 out of 5 stars Incisive, thorough and an exciting journey
I bought this book to further my existing knowledge on the Entity Framework. After spending a few months with this technology on some important modules at work, I knew I needed... Read more
Published on April 12, 2010 by Cranialsurge
5.0 out of 5 stars Impressed
I have hundreds of computer books on programming in the last 24 years. This is by without a doubt the best written, most informative on the subject matter of any book I ever... Read more
Published on October 29, 2009 by Ryan L. Todd
5.0 out of 5 stars Great book!
This is a great book for both the beginner programmer willing to know about the EF and for the seasoned coder who wants the details of this new data access technology. Read more
Published on September 14, 2009 by Harley O'Brien
5.0 out of 5 stars Pour it on..
This book is absoluetely amazing.
If you don't know what you are talking after doing the hands on, on this book, then the book has done it's job
The first ten chapters... Read more
Published on September 1, 2009 by .Net learner
5.0 out of 5 stars Great book!
Very thorough, very straight forward. Covers all the angles of the framework. Very easy to read from front to back. Easy to follow and learn the entire Entity Framework!
Published on August 6, 2009 by Jamie King
5.0 out of 5 stars No page wasted
When I first saw this book I was put off by the sheer size of it, but when I started to dig in, I found that every page was full of information and was well organized. Read more
Published on July 8, 2009 by Dustin Davis
5.0 out of 5 stars The Best Book On EF Out There Right Now
This is a well written book with good learning examples. For anyone new to EF that wants to learn not only how EF works, but why - start with this book. This is V1. Read more
Published on July 7, 2009 by Ronald Landers
Search Customer Reviews
Only search this product's reviews


Forums

Search Customer Discussions
Search all Amazon discussions

Start a new discussion
Topic:
First post:
Prompts for sign-in
 




So You'd Like to...


Create a guide


Look for Similar Items by Category