|
|
|
|
LEADER |
00000cam a2200000 a 4500 |
001 |
OR_ocn767502485 |
003 |
OCoLC |
005 |
20231017213018.0 |
006 |
m o d |
007 |
cr |n|---||||| |
008 |
111205s2012 caua o 000 0 eng d |
040 |
|
|
|a EBLCP
|b eng
|e pn
|c EBLCP
|d CUS
|d N$T
|d OCLCQ
|d TEFOD
|d YDXCP
|d OCLCQ
|d OCLCF
|d DEBSZ
|d OCLCA
|d IDEBK
|d OCLCQ
|d UMI
|d COO
|d TEFOD
|d E7B
|d OCLCQ
|d REB
|d OCLCQ
|d FEM
|d OCLCQ
|d OCLCA
|d MERER
|d OCL
|d OCLCQ
|d BRL
|d CEF
|d OCLCQ
|d OCLCO
|d OCL
|d OCLCQ
|
019 |
|
|
|a 794554055
|a 861530847
|a 968071218
|a 969080795
|
020 |
|
|
|a 9781449323851
|q (electronic bk.)
|
020 |
|
|
|a 1449323855
|q (electronic bk.)
|
020 |
|
|
|a 9781449323844
|q (electronic bk.)
|
020 |
|
|
|a 1449323847
|q (electronic bk.)
|
020 |
|
|
|z 9781449312947
|q (pbk.)
|
020 |
|
|
|z 1449312942
|q (pbk.)
|
029 |
1 |
|
|a AU@
|b 000050040771
|
029 |
1 |
|
|a DEBBG
|b BV040901648
|
029 |
1 |
|
|a DEBSZ
|b 378289993
|
029 |
1 |
|
|a DEBSZ
|b 381376885
|
029 |
1 |
|
|a DEBSZ
|b 397169493
|
035 |
|
|
|a (OCoLC)767502485
|z (OCoLC)794554055
|z (OCoLC)861530847
|z (OCoLC)968071218
|z (OCoLC)969080795
|
037 |
|
|
|a CL0500000140
|b Safari Books Online
|
037 |
|
|
|a 0834CED5-7D56-4694-B23A-73F8BA1E7002
|b OverDrive, Inc.
|n http://www.overdrive.com
|
050 |
|
4 |
|a QA76.9.D26 .L478 2012
|
072 |
|
7 |
|a COM
|x 005030
|2 bisacsh
|
072 |
|
7 |
|a COM
|x 004000
|2 bisacsh
|
082 |
0 |
4 |
|a 006.3
|
049 |
|
|
|a UAMI
|
100 |
1 |
|
|a Lerman, Julia.
|
245 |
1 |
0 |
|a Programming entity framework :
|b Code First /
|c Julia Lerman & Rowan Miller.
|
246 |
3 |
0 |
|a Code First
|
260 |
|
|
|a Sebastopol :
|b O'Reilly Media,
|c 2012.
|
300 |
|
|
|a 1 online resource (192 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
|
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. Welcome to Code First; Modeling with EF Before Code First; Inception of Code First; Getting Code First to Developers in Between .NET Releases; Writing the Code ... First; Managing Objects with DbContext; Using the Data Layer and Domain Classes; Getting from Classes to a Database; Working with Configuration; Configuring with Data Annotations; Configuring with the Fluent API; Creating or Pointing to a Database.
|
505 |
8 |
|
|a What Code First Does Not SupportChoosing Code First; Learning from This Book; Chapter 2. Your First Look at Code First; Introducing EF to the Domain Classes; Putting the Pieces Together in an Example; Convention for Table, Schema, and Column Names; Convention for Keys; Convention for String Properties; Convention for Byte Array; Convention for Booleans; Convention for One-to-Many Relationships; Overriding Convention with Configurations; Configuring with Data Annotations; Understanding How Model Changes Impact Database Initialization; Data Annotations and Validation-Aware UIs.
|
505 |
8 |
|
|a Configuring Code First with the Fluent APIOrganizing Fluent Configurations; Summary; Chapter 3. Using Conventions and Configurations for Property Attributes; Working with Property Attributes in Code First; Length; Data Type; Nullability and the Required Configuration; Mapping Keys; Code First Convention Response to Unconventional Key Properties; Configuring the Key with Data Annotations; Using HasKey to Configure a Key Property in the Fluent API; Configuring Database-Generated Properties; Configuring Database-Generated Options with Data Annotations.
|
505 |
8 |
|
|a Configuring Database-Generated Options with the Fluent APIConfiguring TimeStamp/RowVersion Fields for Optimistic Concurrency; Code First Convention and TimeStamp fields; Using Data Annotations to Configure TimeStamp; Configuring TimeStamp/RowVersion with Fluent API; Configuring Non-Timestamp Fields for Concurrency; Configuring for Optimistic Concurrency with Data Annotations; Configuring for Optimistic Concurrency with Fluent API; Mapping to Non-Unicode Database Types; Affecting the Precision and Scale of Decimals; Convention for Precision and Scale; Data Annotations for Precision and Scale.
|
505 |
8 |
|
|a Fluent Configuration for Precision and ScaleWorking with Complex Types in Code First; Defining Complex Types by Convention; Configuring Unconventional Complex Types; Specifying complex types with Data Annotations; Specifying complex types with the Fluent API; Working with More Complicated Complex Types; Configuring Properties of Complex Types; Configuring Complex Types with Data Annotations; Configuring Complex Type Properties with the Fluent API; Summary; Chapter 4. Using Convention and Configuration for Relationships; Working with Multiplicity; Configuring Multiplicity with Data Annotations.
|
520 |
|
|
|a Take advantage of the Code First data modeling approach in ADO.NET Entity Framework, and learn how to build and configure a model based on existing classes in your business domain. With this concise book, you'll work hands-on with examples to learn how Code First can create an in-memory model and database by default, and how you can exert more control over the model through further configuration. Code First provides an alternative to the database first and model first approaches to the Entity Data Model. Learn the benefits of defining your model with code, whether you're working with an existin.
|
588 |
0 |
|
|a Print version record.
|
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 design.
|
650 |
|
0 |
|a Computer software
|x Development.
|
650 |
|
0 |
|a Database searching.
|
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 |
|
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 Computer software
|x Development.
|2 fast
|0 (OCoLC)fst00872537
|
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.
|b 1st ed.
|d Sebastopol, CA : O'Reilly Media, 2012
|z 9781449312947
|w (OCoLC)756586643
|
856 |
4 |
0 |
|u https://learning.oreilly.com/library/view/~/9781449317867/?ar
|z Texto completo (Requiere registro previo con correo institucional)
|
938 |
|
|
|a ProQuest Ebook Central
|b EBLB
|n EBL806527
|
938 |
|
|
|a ebrary
|b EBRY
|n ebr10758641
|
938 |
|
|
|a EBSCOhost
|b EBSC
|n 414857
|
938 |
|
|
|a ProQuest MyiLibrary Digital eBook Collection
|b IDEB
|n cis28410991
|
938 |
|
|
|a YBP Library Services
|b YANK
|n 7269337
|
994 |
|
|
|a 92
|b IZTAP
|