Top Banner
Deep Dive into the ADO.NET Entity Framework
18

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

Jan 16, 2016

Download

Documents

Myrtle Crawford
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
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.