Cargando…

Programming Entity framework. Dbcontext /

The DbContext API captures Entity Framework's (EF) most commonly used features and tasks, simplifying development with EF. This concise book shows you how to use the API to perform set operations with the DbSet class, handle change tracking and resolve concurrency conflicts with the Change Trac...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Lerman, Julia
Otros Autores: Miller, Rowan
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Sebastopol, CA : O'Reilly Media, ©2012.
Edición:1st ed.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000Ia 4500
001 OR_ocn798669680
003 OCoLC
005 20231017213018.0
006 m o d
007 cr unu||||||||
008 120710s2012 caua o 000 0 eng d
010 |a  2013427108 
040 |a UMI  |b eng  |e pn  |c UMI  |d CUS  |d OCLCO  |d COO  |d WAU  |d DEBSZ  |d YDXCP  |d CNSPO  |d OCLCQ  |d OCLCA  |d IDEBK  |d E7B  |d NLE  |d OCLCQ  |d OCLCF  |d OCLCQ  |d FEM  |d NRC  |d OCLCQ  |d OCLCO  |d OCLCA  |d MERER  |d OCL  |d OCLCQ  |d CEF  |d MOQ  |d WYU  |d OCLCO  |d UAB  |d VT2  |d RDF  |d UKAHL  |d CZL  |d DST  |d OCLCO  |d OCLCQ 
015 |a GBB1E4757  |2 bnb 
016 7 |a 015995906  |2 Uk 
019 |a 859885584  |a 861532289  |a 968037432  |a 968985502  |a 1066615157  |a 1103251944  |a 1129363463  |a 1295605236  |a 1300515273  |a 1303332941 
020 |a 9781449331856  |q (electronic bk.) 
020 |a 1449331858  |q (electronic bk.) 
020 |a 9781449331825 
020 |a 1449331823 
020 |a 9781449331849 
020 |a 144933184X 
020 |z 9781449312961  |q (pbk.) 
020 |z 1449312969  |q (pbk.) 
020 |a 1306812186 
020 |a 9781306812184 
024 8 |a 9781449331825 
029 1 |a AU@  |b 000049904075 
029 1 |a DEBBG  |b BV040901732 
029 1 |a DEBSZ  |b 378290991 
029 1 |a DEBSZ  |b 381377733 
029 1 |a GBVCP  |b 785362738 
029 1 |a AU@  |b 000062629306 
029 1 |a AU@  |b 000066233397 
029 1 |a AU@  |b 000067090465 
035 |a (OCoLC)798669680  |z (OCoLC)859885584  |z (OCoLC)861532289  |z (OCoLC)968037432  |z (OCoLC)968985502  |z (OCoLC)1066615157  |z (OCoLC)1103251944  |z (OCoLC)1129363463  |z (OCoLC)1295605236  |z (OCoLC)1300515273  |z (OCoLC)1303332941 
037 |a CL0500000152  |b Safari Books Online 
050 4 |a QA76.9.D26  |b L473 2012eb 
082 0 4 |a 006.3  |2 23 
049 |a UAMI 
100 1 |a Lerman, Julia. 
245 1 0 |a Programming Entity framework.  |p Dbcontext /  |c Julia Lerman and Rowan Miller. 
246 3 0 |a Dbcontext 
250 |a 1st ed. 
260 |a Sebastopol, CA :  |b O'Reilly Media,  |c ©2012. 
300 |a 1 online resource (xiv, 238 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  |2 rda 
588 0 |a Print version record. 
520 |a The DbContext API captures Entity Framework's (EF) most commonly used features and tasks, simplifying development with EF. This concise book shows you how to use the API to perform set operations with the DbSet class, handle change tracking and resolve concurrency conflicts with the Change Tracker API, and validate changes to your data with the Validation API. With DbContext, you'll be able to query and update data, whether you're working with individual objects or graphs of objects and their related data. You'll find numerous C♯ code samples to help you get started. All you need is experience with Visual Studio and database management basics. Use EF's query capabilities to retrieve data, and use LINQ to sort and filter data Learn how to add new data, and change and delete existing data Use the Change Tracker API to access information EF keeps about the state of entity instances Control change tracking information of entities in disconnected scenarios, including NTier applications Validate data changes before they're sent to the database, and set up validation rules Bypass EF's query pipeline and interact directly with the database. 
542 |f Copyright © O'Reilly Media, Inc.  |g 2012. 
505 0 |a Table of Contents; Preface; Audience; Contents of This Book; Conventions Used in This Book; Using Code Examples; Safari® Books Online; How to Contact Us; Acknowledgments; Chapter 1. Introducing the DbContext API; Getting the DbContext API into Your Project; Looking at Some Highlights of the DbContext API; Reducing and Simplifying Ways to Work with a Set; Retrieving an Entity Using ID with DbSet.Find; Avoiding Trolling Around the Guts of Entity Framework; Working with the BreakAway Model; Getting the Sample Solution; Getting DbContext from an EDMX Model 
505 8 |a Ensuring DbContext Instances Get DisposedChapter 2. Querying with DbContext; Writing Queries with LINQ to Entities; Querying All the Data from a Set; Using LINQ for Sorting, Filtering, and More; Finding a Single Object; Querying Local Data; Using the Load Method to Bring Data into Memory; Running LINQ Queries Against Local; Working with the ObservableCollection Returned by Local; Loading Related Data; Lazy Loading; Understanding the downsides of lazy loading; Eager Loading; Understanding the downsides of eager loading; Using Include in LINQ queries; Explicit Loading 
505 8 |a Checking If a Navigation Property Has Been LoadedQuerying Contents of a Collection Navigation Property; Explicit Loading a Subset of the Contents of a Navigation Property; Chapter 3. Adding, Changing, and Deleting Entities; Working with Single Entities; Adding New Entities; Changing Existing Entities; Deleting Existing Entities; Deleting without loading from the database; Deleting an object with related data; Multiple Changes at Once; The "Find or Add" Pattern; Working with Relationships; Adding a Relationship Between Objects; Changing a Relationship Between Objects 
505 8 |a Removing a Relationship Between ObjectsWorking with Change Tracking; Using Snapshot Change Tracking; Understanding When Automatic Change Detection Occurs; Controlling When DetectChanges Is Called; Using DetectChanges to Trigger Relationship Fix-up; Enabling and Working with Change Tracking Proxies; Ensuring the New Instances Get Proxies; Creating Proxy Instances for Derived Types; Fetching Entities Without Change Tracking; Chapter 4. Working with Disconnected Entities Including N-Tier Applications; A Simple Operation on a Disconnected Graph; Exploring the Challenges of N-Tier 
505 8 |a Using Existing N-Tier Frameworks That Support Graph ModificationUsing Explicit Operations on the Server Side; Replaying Changes on the Server; Understanding How DbContext Responds to Setting the State of a Single Entity; Marking a New Entity as Added; Marking an Existing Entity as Unchanged; Marking an Existing Entity as Modified; Registering an Existing Entity for Deletion; Using a stub entity to mark for deletion; Working with Relationships with and Without Foreign Keys; Benefiting from foreign key properties; Using navigation properties to define relationships 
546 |a English. 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
630 0 0 |a ActiveX. 
630 0 0 |a Microsoft .NET Framework. 
630 0 7 |a ActiveX.  |2 blmlsh 
630 0 7 |a ActiveX.  |2 fast  |0 (OCoLC)fst01386535 
630 0 7 |a Microsoft .NET Framework.  |2 fast  |0 (OCoLC)fst01020083 
650 0 |a Querying (Computer science) 
650 0 |a Database design. 
650 6 |a Bases de données  |x Interrogation. 
650 6 |a Bases de données  |x Conception. 
650 7 |a online searching.  |2 aat 
650 1 7 |a Database design.  |2 bisacsh 
650 7 |a Database design.  |2 fast  |0 (OCoLC)fst00888032 
650 7 |a Querying (Computer science)  |2 fast  |0 (OCoLC)fst01739127 
700 1 |a Miller, Rowan. 
776 0 8 |i Print version:  |a Lerman, Julia.  |t Programming entity framework. Dbcontext.  |b 1st ed.  |d Beijing ; Sebastopol, CA : O'Reilly Media, ©2012  |z 9781449312961  |w (OCoLC)769472600 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781449331825/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a Askews and Holts Library Services  |b ASKH  |n AH23071383 
938 |a Askews and Holts Library Services  |b ASKH  |n AH22930953 
938 |a ebrary  |b EBRY  |n ebr10759068 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis28411181 
938 |a YBP Library Services  |b YANK  |n 11368653 
938 |a YBP Library Services  |b YANK  |n 7475584 
994 |a 92  |b IZTAP