+ All Categories
Home > Documents > Deep Dive into the ADO.NET Entity Framework. Agenda Entity Data Model Advanced Mapping Advanced...

Deep Dive into the ADO.NET Entity Framework. Agenda Entity Data Model Advanced Mapping Advanced...

Date post: 16-Jan-2016
Category:
Upload: myrtle-crawford
View: 242 times
Download: 4 times
Share this document with a friend
18
Deep Dive into the ADO.NET Entity Framework
Transcript
Page 1: Deep Dive into the ADO.NET Entity Framework. Agenda Entity Data Model Advanced Mapping Advanced querying Entity SQL Object Services ADO.NET Metadata.

Deep Dive into the ADO.NET Entity Framework

Deep Dive into the ADO.NET Entity Framework

Page 2: Deep Dive into the ADO.NET Entity Framework. Agenda Entity Data Model Advanced Mapping Advanced querying Entity SQL Object Services ADO.NET Metadata.

AgendaAgenda

Entity Data ModelAdvanced Mapping

Advanced queryingEntity SQLObject Services

ADO.NET Metadata

Page 3: Deep Dive into the ADO.NET Entity Framework. Agenda Entity Data Model Advanced Mapping Advanced querying Entity SQL Object Services ADO.NET Metadata.

Advanced MappingAdvanced Mapping

Complex TypesTable-Per-Hierarchy (TPH)Table-Per-Type (TPT)Query ViewsDefining Queries

Page 4: Deep Dive into the ADO.NET Entity Framework. Agenda Entity Data Model Advanced Mapping Advanced querying Entity SQL Object Services ADO.NET Metadata.

Complex TypesComplex Types

Customer

FirstName

LastName

AddressAddress

AddressLine1

AddressLine2

City

State

Zip

Customer

AddressLine1

AddressLine2

City

State

Zip

FirstName

LastName

Page 5: Deep Dive into the ADO.NET Entity Framework. Agenda Entity Data Model Advanced Mapping Advanced querying Entity SQL Object Services ADO.NET Metadata.

Table Per HierarchyTable Per Hierarchy

Person

FirstName

LastName

Customer

AddressLine1

Customer

AddressLine1

AddressLine2

City

State

Zip

FirstName

LastName

AddressLine2City

State

Zip

CustomerType

Discriminator

Page 6: Deep Dive into the ADO.NET Entity Framework. Agenda Entity Data Model Advanced Mapping Advanced querying Entity SQL Object Services ADO.NET Metadata.

Table Per TypeTable Per Type

Person

FirstName

LastName

Customer

AddressLine1

Person

FirstNameLastName

AddressLine2City StateZip

AddressLine1AddressLine2

City StateZip

CustomerPersonID

PersonID

Page 7: Deep Dive into the ADO.NET Entity Framework. Agenda Entity Data Model Advanced Mapping Advanced querying Entity SQL Object Services ADO.NET Metadata.

Query ViewsQuery Views

Customer

Address

City

FirstName

LastName

Entity SQL

Page 8: Deep Dive into the ADO.NET Entity Framework. Agenda Entity Data Model Advanced Mapping Advanced querying Entity SQL Object Services ADO.NET Metadata.

Defining QueriesDefining Queries

Customer

Address

City

FirstName

LastName

T-SQL

Page 9: Deep Dive into the ADO.NET Entity Framework. Agenda Entity Data Model Advanced Mapping Advanced querying Entity SQL Object Services ADO.NET Metadata.

DemoDemoAdvanced Mapping

Page 10: Deep Dive into the ADO.NET Entity Framework. Agenda Entity Data Model Advanced Mapping Advanced querying Entity SQL Object Services ADO.NET Metadata.

Entity SQLEntity SQL

FunctionsCanonicalStore-specific

PagingTOPSKIP/LIMIT

Grouping

Page 11: Deep Dive into the ADO.NET Entity Framework. Agenda Entity Data Model Advanced Mapping Advanced querying Entity SQL Object Services ADO.NET Metadata.

Canonical FunctionsCanonical Functions

AggregateBitwiseDate/TimeMathString

Page 12: Deep Dive into the ADO.NET Entity Framework. Agenda Entity Data Model Advanced Mapping Advanced querying Entity SQL Object Services ADO.NET Metadata.

DemoDemoEntity SQL

Page 13: Deep Dive into the ADO.NET Entity Framework. Agenda Entity Data Model Advanced Mapping Advanced querying Entity SQL Object Services ADO.NET Metadata.

Object ServicesObject Services

TransactionsOptimistic ConcurrencyCompiled Queries

Page 14: Deep Dive into the ADO.NET Entity Framework. Agenda Entity Data Model Advanced Mapping Advanced querying Entity SQL Object Services ADO.NET Metadata.

DemoDemoLINQ To Entities

Page 15: Deep Dive into the ADO.NET Entity Framework. Agenda Entity Data Model Advanced Mapping Advanced querying Entity SQL Object Services ADO.NET Metadata.

ADO.NET MetadataADO.NET Metadata

Exposes metadataExposed from

ObjectContextEdmConnectionEdmDataReader

Metadata Workspace

O-Space

OC-Space

C-Space

CS-Space

S-Space

Page 16: Deep Dive into the ADO.NET Entity Framework. Agenda Entity Data Model Advanced Mapping Advanced querying Entity SQL Object Services ADO.NET Metadata.

DemoDemoADO.NET Metadata

Page 17: Deep Dive into the ADO.NET Entity Framework. Agenda Entity Data Model Advanced Mapping Advanced querying Entity SQL Object Services ADO.NET Metadata.

SummarySummary

Entity Data ModelAdvanced Mapping

Advanced queryingEntity SQLObject Services

ADO.NET Metadata

Page 18: Deep Dive into the ADO.NET Entity Framework. Agenda Entity Data Model Advanced Mapping Advanced querying Entity SQL Object Services ADO.NET Metadata.

Recommended