Cargando…

Programming entity framework /

Get a thorough introduction to ADO.NET Entity Framework 4 -- Microsoft's core framework for modeling and interacting with data in .NET applications. The second edition of this acclaimed guide provides a hands-on tour of the framework latest version in Visual Studio 2010 and .NET Framework 4. No...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Lerman, Julia
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Farnham : O'Reilly, ©2010.
Edición:2nd ed.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000Ia 4500
001 OR_ocn608305639
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cnu---unuuu
008 100421s2010 enka o 001 0 eng d
040 |a UMI  |b eng  |e pn  |c UMI  |d CEF  |d OCLCQ  |d DEBSZ  |d N$T  |d OCLCQ  |d TEFOD  |d YDXCP  |d OCLCF  |d OCLCA  |d MND  |d CNSPO  |d TEFOD  |d OCLCQ  |d OCLCA  |d MERER  |d OCL  |d OCLCQ  |d WYU  |d UAB  |d UKAHL  |d VT2  |d CNCEN  |d RDF  |d OCLCO  |d OCL  |d OCLCQ 
019 |a 861927841  |a 1105771491 
020 |a 9781449399474  |q (electronic bk.) 
020 |a 1449399479  |q (electronic bk.) 
020 |a 9780596807276  |q (electronic bk.) 
020 |a 0596807279  |q (electronic bk.) 
020 |a 9781449399658  |q (electronic bk.) 
020 |a 1449399657  |q (electronic bk.) 
020 |z 9780596807269  |q (pbk.) 
020 |z 0596807260  |q (pbk.) 
024 8 |a 9780596807276 
029 1 |a DEBSZ  |b 355423677 
029 1 |a HEBIS  |b 291495230 
029 1 |a NZ1  |b 13731726 
029 1 |a AU@  |b 000062584218 
029 1 |a AU@  |b 000066233400 
035 |a (OCoLC)608305639  |z (OCoLC)861927841  |z (OCoLC)1105771491 
037 |a CL0500000065  |b Safari Books Online 
037 |a A033AB89-1195-4DDC-A0E4-21B4DDB88FB4  |b OverDrive, Inc.  |n http://www.overdrive.com 
050 4 |a QA76.9.D26  |b L47 2010eb 
072 7 |a COM  |x 005030  |2 bisacsh 
072 7 |a COM  |x 004000  |2 bisacsh 
082 0 4 |a 006.3  |2 23 
049 |a UAMI 
100 1 |a Lerman, Julia. 
245 1 0 |a Programming entity framework /  |c Julia Lerman. 
250 |a 2nd ed. 
260 |a Farnham :  |b O'Reilly,  |c ©2010. 
300 |a 1 online resource (xxxvi, 873 pages) :  |b illustrations 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a text file 
588 0 |a Print version record. 
520 |a Get a thorough introduction to ADO.NET Entity Framework 4 -- Microsoft's core framework for modeling and interacting with data in .NET applications. The second edition of this acclaimed guide provides a hands-on tour of the framework latest version in Visual Studio 2010 and .NET Framework 4. Not only will you learn how to use EF4 in a variety of applications, you'll also gain a deep understanding of its architecture and APIs. Written by Julia Lerman, the leading independent authority on the framework, Programming Entity Framework covers it all -- from the Entity Data Model and Object Services to WCF Services, MVC Apps, and unit testing. This book highlights important changes for experienced developers familiar with the earlier version. Understand the core concepts you need to make the best use of the EF4 in your applications Learn to query your data, using either LINQ to Entities or Entity SQL Create Windows Forms, WPF, ASP.NET Web Forms, and ASP.NET MVC applications Build and consume WCF Services, WCF Data Services, and WCF RIA Services Use Object Services to work directly with your entity objects Create persistent ignorant entities, repositories, and write unit tests Delve into model customization, relationship management, change tracking, data concurrency, and more Get scores of reusable examples -- written in C# (with notes on Visual Basic syntax) -- that you can implement right away. 
542 |f Copyright © O'Reilly Media, Inc.  |g 2010 
505 0 |a Table of Contents; Foreword; Preface; Who This Book Is For; How This Book Is Organized; What You Need to Use This Book; This Book's Website; Conventions Used in This Book; Using Code Examples; Safari® Books Online; Comments and Questions; Acknowledgments; Author Note for Third Printing, August 2011; Entity Framework 4.1 (Code First and DbContext) Has Released; Entity Framework June 2011 CTP; Chapter 1. Introducing the ADO.NET Entity Framework; The Entity Relationship Model: Programming Against a Model, Not the Database; The Entity Data Model: A Client-Side Data Model 
505 8 |a Entities: Blueprints for Business ClassesThe Backend Database: Your Choice; Database Providers; Access and ODBC; Entity Framework Features: APIs and Tools; Metadata; Entity Data Model Design Tools; Database-first design; Model-first design; Code generation; Object Services; POCO Support; Change Tracking; Relationship Management and Foreign Keys; Data Binding; n-Tier Development; EntityClient; The Entity Framework and WCF Services; What About ADO.NET DataSets and LINQ to SQL?; DataSets; LINQ to SQL; Entity Framework Pain Points Are Fading Away; Programming the Entity Framework 
505 8 |a Chapter 2. Exploring the Entity Data ModelWhy Use an Entity Data Model?; The EDM Within the Entity Framework; Walkthrough: Building Your First EDM; Inspecting the EDM in the Designer Window; Entity Container Properties; Entity Properties; Entity Property Properties; The Model's Supporting Metadata; Viewing the Model in the Model Browser; Viewing the Model's Raw XML; CSDL: The Conceptual Schema; EntityContainer; EntitySet; EntityType; The Key element; The Property elements; The navigation properties; Associations; Navigation Property; Navigation Properties That Return Collections 
505 8 |a SSDL: The Store SchemaMSL: The Mappings; Database Views in the EDM; Summary; Chapter 3. Querying Entity Data Models; Query the Model, Not the Database; Your First EDM Query; Where Did the Context and Classes Come From?; The ObjectContext class, SampleEntities; The entity classes; Querying with LINQ to Entities; Writing Your First LINQ to Entities Query; Querying with Object Services and Entity SQL; Why Another Way to Query?; Entity SQL; Entity SQL canonical functions; The Parameterized ObjectQuery; Querying with Methods; Querying with LINQ Methods; Chaining methods 
505 8 |a Querying with Query Builder Methods and Entity SQLSpecifying the control variable; The Shortest Query; ObjectQuery, ObjectSet, and LINQ to Entities; Querying with EntityClient to Return Streamed Data; EntityConnection and the Connection String; EntityCommand; ExecuteReader; Forward-Only Access to the Fields; Translating Entity Queries to Database Queries; Pay Attention to the .NET Method's Impact on Generated SQL; Avoiding Inadvertent Query Execution; Summary; Chapter 4. Exploring LINQ to Entities in Greater Depth; Getting Ready with Some New Lingo; Projections in Queries 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
630 0 0 |a Microsoft .NET Framework. 
630 0 7 |a Microsoft .NET Framework.  |2 fast  |0 (OCoLC)fst01020083 
650 0 |a Querying (Computer science) 
650 0 |a Database searching. 
650 6 |a Bases de données  |x Interrogation. 
650 7 |a online searching.  |2 aat 
650 7 |a COMPUTERS  |x Enterprise Applications  |x Business Intelligence Tools.  |2 bisacsh 
650 7 |a COMPUTERS  |x Intelligence (AI) & Semantics.  |2 bisacsh 
650 7 |a Database searching.  |2 fast  |0 (OCoLC)fst00888058 
650 7 |a Querying (Computer science)  |2 fast  |0 (OCoLC)fst01739127 
776 0 8 |i Print version:  |a Lerman, Julia.  |t Programming entity framework.  |d Farnham : O'Reilly, 2010  |z 9780596807269  |w (OCoLC)495598267 
856 4 0 |u https://learning.oreilly.com/library/view/~/9780596807276/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a Askews and Holts Library Services  |b ASKH  |n AH26395471 
938 |a Askews and Holts Library Services  |b ASKH  |n AH26395455 
938 |a EBSCOhost  |b EBSC  |n 414997 
938 |a YBP Library Services  |b YANK  |n 7489367 
938 |a YBP Library Services  |b YANK  |n 7428713 
994 |a 92  |b IZTAP