Deliver to your Kindle or other device

 
 
 

Try it free

Sample the beginning of this book for free

Deliver to your Kindle or other device

Read books on your computer or other mobile devices with our FREE Kindle Reading Apps.
Entity Framework 4.0 Recipes: A Problem-Solution Approach
 
 

Entity Framework 4.0 Recipes: A Problem-Solution Approach [Kindle Edition]

Larry Tenny , Zeeshan Hirani
4.0 out of 5 stars  See all reviews (2 customer reviews)

Digital List Price: £26.05 What's this?
Print List Price: £39.49
Kindle Price: £20.84 includes VAT* & free wireless delivery via Amazon Whispernet
You Save: £18.65 (47%)
Unlike print books, digital books are subject to VAT.

Formats

Amazon Price New from Used from
Kindle Edition £20.84  
Paperback £39.49  


Product Description

Product Description

Entity Framework 4.0 Recipes provides an exhaustive collection of ready-to-use code solutions for Microsoft’s Entity Framework, Microsoft’s vision for the future of data access. Entity Framework is a model-centric data access platform with an ocean of new concepts and patterns for developers to learn. With this book, you will learn the core concepts of Entity Framework through a broad range of clear and concise solutions to everyday data access tasks. Armed with this experience, you will be ready to dive deep into Entity Framework, experiment with new approaches, and develop ways to solve even the most difficult data access challenges. If you are a developer who likes to learn by example, then this is the right book for you.

  • Gives ready-to-use, real-world recipes to help you with everyday tasks
  • Provides guideposts for learning core concepts
  • Maps out key landmarks for experimenting with your own solutions

What you’ll learn

  • Solve the most common data access problems using Entity Framework.
  • Implement basic data access design patterns using Entity Framework.
  • Seamlessly model your solutions across both code and data.
  • Improve data access performance.
  • Use data binding to simplify and reduce your code.
  • Leverage the recipes to empower your own exploration of Entity Framework.

Who is this book for?

This book is for anyone learning Microsoft’s Entity Framework—Microsoft’s new and primary data access platform. If you have ever struggled to learn a new technology, programming model, or way of doing something, you know how helpful simple, real-world examples can be. For the beginning developer, this book provides concrete examples for common data access tasks. For developers with experience with previous Microsoft access platforms, this book provides a task-by-task mapping between previous approaches and the patterns used in Entity Framework.


Product details

  • Format: Kindle Edition
  • File Size: 22670 KB
  • Print Length: 648 pages
  • Publisher: Apress; 1 edition (6 May 2010)
  • Sold by: Amazon Media EU S.à r.l.
  • Language English
  • ASIN: B003VPWYDC
  • Text-to-Speech: Enabled
  • Average Customer Review: 4.0 out of 5 stars  See all reviews (2 customer reviews)
  • Amazon Bestsellers Rank: #153,503 Paid in Kindle Store (See Top 100 Paid in Kindle Store)
  •  Would you like to give feedback on images?


More About the Authors

Discover books, learn about writers, and more.

What Other Items Do Customers Buy After Viewing This Item?


Tag this product

 (What's this?)
Think of a tag as a keyword or label you consider is strongly related to this product.
Tags will help all customers organise and find favourite items.
Your tags: Add your first tag
 

Customer Reviews

5 star
0
3 star
0
2 star
0
1 star
0
Most Helpful Customer Reviews
3 of 3 people found the following review helpful
Practical Examples 28 May 2011
Format:Paperback
This book will not teach you about Entity Framework from scratch.
BUT once you have an understanding then this book is an invaluable reference on how to achieve what you want with the Framework.

It's clearly written, easily understood and has a commonsense practical approach.

I read Julia Lerman's 'Programming Entity Framework' - I ended up educated and confused.

I read this book and the clouds of confusion lifted - I look forward to puting what I've learned into practice.
Comment | 
Was this review helpful to you?
Work Related Product 23 Dec 2011
Format:Paperback
The person that the book was intended for has indicated that it is relevant for his needs as a computer programmer
Comment | 
Was this review helpful to you?
Most Helpful Customer Reviews on Amazon.com (beta)
Amazon.com:  24 reviews
23 of 25 people found the following review helpful
Don't buy the Kindle version.... 21 Jan 2011
By Phil Boyd - Published on Amazon.com
Format:Kindle Edition|Amazon Verified Purchase
The Kindle version is so incomplete as to be completely worthless. Almost none of the images or example code that is referenced made it into the Kindle version from the print version.
11 of 12 people found the following review helpful
Excellent book with great coverage of Entity Framework 4.0 3 Jun 2010
By Steve Kerns - Published on Amazon.com
Format:Paperback|Amazon Verified Purchase
This is absolutely the book to have if you are programming with Entity Framework. This book covers all kinds modeling scenarios, improving performance (this was really important for me), querying using both linq and entity SQL, POCO, n-tier applications, and a bunch of other stuff.

The cool thing about this book is that it's full of examples, tons of code that actually works, and has a bunch of stuff I've never seen anywhere else about EF.

The book is very well organized and the author has a good writing style. Everything is right to the point.

I just do not think you can do without this book if you are going to do anything besides play around with the Entity Framework.
14 of 16 people found the following review helpful
Good book on EF 4.0 25 Aug 2010
By H. Zhang - Published on Amazon.com
Format:Paperback
I have learned a lot from this book and used some methods in the book for my application, so I am a grateful reader. Since this book has been praised by so many reviews, I thought it would be most useful for me to state the strengths of this book quickly then follow it with my reservations that prevented me from giving 5 stars to it.

It is very readable and well organized. It is more than a collection of recipes because the first few chapters could give a beginner a good start on EF. Some people may think it has a lot of redundancy by providing a complete list of the code for each recipe, I personally like the completeness (I have the eBook version so the thickness does not bother me at all).

Here are my reservations:

1. There are three methods to query a conceptual model in EF - LINQ to Entities, Entity SQL, Query builder methods. This could be confusing to novice readers. The book mixes all of them and it may be the best approach to mix them to achieve the most elegant code, but I wish the author could share the rationale of each mixture which can be very educational.

2. Each recipe is a method to solve a problem with a specific approach but it may not be the best overall method. I wish the book could clearly point out this. A typical example is recipe 4-3 which is a method for assigning a value to a property with code during data saving. This is a very common scenario for data entry applications (e.g. setting the user ID value which is not entered by the user for each record) and it is usually achieved by a single line of code in an event handler of a control. In the case of the recipe, it can be handled by one statement in the ItermInserting handler of the DetailsView, but the recipe uses a pure EF way of creating a partial method to intercept SavingChanges event.

3. I think the best way to achieve a solid data model is to have a solid database design and the EF conceptual model should just be a reflection of that. EF has matured a lot but the latest version EF 4.0 still has some glitches or undesirable behaviors. It is quite possible that someone may have to recreate the model from the database and it may happen many times. If a lot of "custom" modifications are made to EF model, all of them have to be repeated and this may require a lot of work, good documentation or memory. The book has a lot recipes doing exact this and some of them even get into the XML code editing. I wish the book could clearly point out the caveats of doing this.
Search Customer Reviews
Only search this product's reviews

Popular Highlights

 (What's this?)
&quote;
a model is composed of three layers: a conceptual layer, a storage layer, and a mapping layer. &quote;
Highlighted by 16 Kindle users
&quote;
The syntax for the conceptual model is defined by the Conceptual Schema Definition Language (CSDL). &quote;
Highlighted by 14 Kindle users
&quote;
If you have a payload-free, many-to-many relationship and you think there is some chance that it may change over time to include a payload, start with an extra identity column in the link table. &quote;
Highlighted by 12 Kindle users

Customer Discussions

This product's forum
Discussion Replies Latest Post
No discussions yet

Ask questions, Share opinions, Gain insight
Start a new discussion
Topic:
First post:
Prompts for sign-in
 

Search Customer Discussions
Search all Amazon discussions
   



Look for similar items by category


Look for similar items by subject


Amazon Media EU S.à r.l. GB Privacy Statement Amazon Media EU S.à r.l. GB Delivery Information Amazon Media EU S.à r.l. GB Returns & Exchanges