Buy new:
-18% $45.00$45.00
This item cannot be shipped to your selected delivery location. Please choose a different delivery location.
Ships from: sweethomeliquid2 Sold by: sweethomeliquid2
Save with Used - Very Good
$8.35$8.35
$21.53 delivery July 5 - 26
Ships from: ThriftBooks-Atlanta Sold by: ThriftBooks-Atlanta
Download the free Kindle app and start reading Kindle books instantly on your smartphone, tablet, or computer - no Kindle device required.
Read instantly on your browser with Kindle for Web.
Using your mobile phone camera - scan the code below and download the Kindle app.
Image Unavailable
Color:
-
-
-
- To view this video download Flash Player
-
-
-
VIDEO -
Programming Entity Framework 1st Edition
Purchase options and add-ons
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 (August 2010) specifically targets Visual Studio 2010 and .NET 4 -- where there have been many advancements and additions to the framework.
- ISBN-10059652028X
- ISBN-13978-0596520281
- Edition1st
- PublisherO'Reilly Media
- Publication dateFebruary 13, 2009
- LanguageEnglish
- Dimensions7.05 x 1.76 x 9.17 inches
- Print length832 pages
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
Book Description
About the Author
Product details
- Publisher : O'Reilly Media; 1st edition (February 13, 2009)
- Language : English
- Paperback : 832 pages
- ISBN-10 : 059652028X
- ISBN-13 : 978-0596520281
- Item Weight : 2.29 pounds
- Dimensions : 7.05 x 1.76 x 9.17 inches
- Best Sellers Rank: #5,484,993 in Books (See Top 100 in Books)
- #1,039 in Microsoft .NET
- #1,986 in Microsoft OS Guides
- #6,208 in Computer Programming Languages
- Customer Reviews:
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
Our goal is to make sure every review is trustworthy and useful. That's why we use both technology and human investigators to block fake reviews before customers ever see them. Learn more
We block Amazon accounts that violate our community guidelines. We also block sellers who buy reviews and take legal actions against parties who provide these reviews. Learn how to report
-
Top reviews
Top reviews from the United States
There was a problem filtering reviews right now. Please try again later.
The table was set with Entity Relationship Modeling by Dr. David Chen in the 70's and garnished by Martin Fowler's Eric Evans' and Jimmy Nillsson's , DDD is now being served to the masses by Microsoft. Julia Lerman with "Programming Entity Framework" does not try to emulate these seminal works. She takes you in a practical step by step approach through EFv1 without being a simplistic Step-by-Step book. The initial examples are simple, but it would be asinine to use Adventure Works in the initial chapters unless you are like Kobayashi at Nathan's hotdog eating contest. I like my hotdogs and concepts one at a time. The examples and databases become more complex as the book goes forward showing the nitty gritty underpinnings and practical applications of EF.
Despite Julia's reluctance to write books, as suggested in her preface, I think she will be on the book publishing treadmill for a long time given the raves about this book, EF's strategic positioning by Microsoft and the attendant demand for well explained intricacies of this emergent technology. Her book is wonderfully explanatory, especially compared to the other book on the market regarding LINQ and EF. I predict she will not be able to resist readers holding up their lighters, like at a concert begging for an encore, especially with EF4 around the corner followed by EF5.
During reading I found 2 things that could be improved. The first is data model used in samples. It contains about 15 tables/entities with many relationships. Maybe it would be better to have smaller model, or several models focusing on different features of EF instead of one 'big' model at the begining of book. I always had to browse to Chapter 5, where model was described.
The bigger problem was order of chapters. Book starts well with chapters about EF essentials, but then for me little illogically it shifts toward the usage of EF in WinForms, WPF, ASP.NET (chapters 9 and 11). I think these 'technology-special' chapters (and also chapters about stored procedures) should be added at the end of the book, or at least after other extremely importatnt topics like working with relationships (chapter 15), object state manager (chapter 17), or exception handling and concurrency issues (chapter 18).
But even for these two small issues I recommend this book to everyone who wants to learn EF in 'why' way. I have already ordered second edition of this book.
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.
However, I am unable to connect with this book and it is taking me extra effort to read and understand it. I am not sure if it is just me or the organization of the book is bad.
I keep comparing this book to "Enterprise JavaBeans 3.0" by Burke et al. I thought that book was on a very similar subject and was very well written.
If you are learning EF and do not have this book, just buy it!
Update, this initial review was written for the first edition of the EF book. I purchased the edition for .NET 4.0 and it is awesome also. Again, just buy it if you are using the Entity Framework.
Top reviews from other countries
DB・SQL・LINQの基本的な知識が前提になりますが、解説は、行間を読む必要がないほど平易でわかりやすく、サンプルも適量でVBとC#両方のコードが載っているのも良いと思います。
EntityFramework本ならこれで、間違いないんじゃないでしょうか。

