Entity Framework Migration

Technology Consultant at Slalom Consulting
Jul. 26, 2011
Entity Framework Migration
Entity Framework Migration
Entity Framework Migration
Entity Framework Migration
Entity Framework Migration
Entity Framework Migration
Entity Framework Migration
Entity Framework Migration
Entity Framework Migration
Entity Framework Migration
Entity Framework Migration
Entity Framework Migration
Entity Framework Migration
Entity Framework Migration
Entity Framework Migration
Entity Framework Migration
Entity Framework Migration
Entity Framework Migration
Entity Framework Migration
Entity Framework Migration
Entity Framework Migration
Entity Framework Migration
Entity Framework Migration
Entity Framework Migration
Entity Framework Migration
1 of 25

More Related Content

What's hot

GTC 2009 OpenGL BartholdGTC 2009 OpenGL Barthold
GTC 2009 OpenGL BartholdMark Kilgard
Pantheon DemoPantheon Demo
Pantheon DemoZac Ayers
R introR intro
R introVishakh Nair
Introduction to RxJava on AndroidIntroduction to RxJava on Android
Introduction to RxJava on AndroidChris Arriola
Ntc 324 week 3 individual systems scenario newNtc 324 week 3 individual systems scenario new
Ntc 324 week 3 individual systems scenario newolivergeorg
面向引擎——编写高效率JS面向引擎——编写高效率JS
面向引擎——编写高效率JSucarticle

Viewers also liked

ADO.NET Entity FrameworkADO.NET Entity Framework
ADO.NET Entity FrameworkDoncho Minkov
Linq to entityLinq to entity
Linq to entitybuianhtai
Lerman Vvs14  Ef Tips And TricksLerman Vvs14  Ef Tips And Tricks
Lerman Vvs14 Ef Tips And TricksJulie Lerman
Ling to SQL and Entity Framework performance analysisLing to SQL and Entity Framework performance analysis
Ling to SQL and Entity Framework performance analysisAlexander Konduforov
Microsoft Data Access TechnologiesMicrosoft Data Access Technologies
Microsoft Data Access TechnologiesDavid Chou
Architectng UXArchitectng UX
Architectng UXDavid Chou

Similar to Entity Framework Migration

Entity Framework v2 Best PracticesEntity Framework v2 Best Practices
Entity Framework v2 Best PracticesAndri Yadi
SQL Server 2008 Integration ServicesSQL Server 2008 Integration Services
SQL Server 2008 Integration ServicesEduardo Castro
Linq To The EnterpriseLinq To The Enterprise
Linq To The EnterpriseDaniel Egan
Module design pattern i.e. express jsModule design pattern i.e. express js
Module design pattern i.e. express jsAhmed Assaf
Entity framework 4.0Entity framework 4.0
Entity framework 4.0Abhishek Sur
What's New for Data?What's New for Data?
What's New for Data?ukdpe

More from Jim Wooley

Improving code quality with Roslyn analyzersImproving code quality with Roslyn analyzers
Improving code quality with Roslyn analyzersJim Wooley
Tearing down the //build/ 2016 conferenceTearing down the //build/ 2016 conference
Tearing down the //build/ 2016 conferenceJim Wooley
Ssdt wooleySsdt wooley
Ssdt wooleyJim Wooley
Windows 8 as an Application Integration HubWindows 8 as an Application Integration Hub
Windows 8 as an Application Integration HubJim Wooley
Reactive Extensions for JavaScriptReactive Extensions for JavaScript
Reactive Extensions for JavaScriptJim Wooley
Linq toolsLinq tools
Linq toolsJim Wooley

Recently uploaded

TaketoFujikawa_KES2023TaketoFujikawa_KES2023
TaketoFujikawa_KES2023Matsushita Laboratory
Nymity Framework: Privacy & Data Protection Update in 7 StatesNymity Framework: Privacy & Data Protection Update in 7 States
Nymity Framework: Privacy & Data Protection Update in 7 StatesTrustArc
Scaling out with WordPressScaling out with WordPress
Scaling out with WordPressKonstantin Kovshenin
Improving Employee Experiences on Cisco RoomOS Devices, Webex, and Microsoft ...Improving Employee Experiences on Cisco RoomOS Devices, Webex, and Microsoft ...
Improving Employee Experiences on Cisco RoomOS Devices, Webex, and Microsoft ...ThousandEyes
2023 Ivanti September Patch Tuesday2023 Ivanti September Patch Tuesday
2023 Ivanti September Patch TuesdayIvanti
ISO Survey 2022: ISO 27001 certificates (ISMS)ISO Survey 2022: ISO 27001 certificates (ISMS)
ISO Survey 2022: ISO 27001 certificates (ISMS)Andrey Prozorov, CISM, CIPP/E, CDPSE. LA 27001

Recently uploaded(20)

Entity Framework Migration

Editor's Notes

  1. Projecting: L2S can project to a structure. EF can't (run time exception) (see http://www.thedatafarm.com/blog/2008/08/15/AFewThingsYouCantDoWithEFQueriesWhichYouWontFindOutUntilRuntime.aspx)
  2. Both frameworks have similar implementations for selecting collections of objects from stored procsFor POCO Objects – L2S can fetch using ExecuteCommand and will map the fields from the return type to the object type supplied. Missing or additional columns are ignored. EF doesn’t support POCO with V1.Multiple Results – L2S can handle multiple results but they must be coded manually. EF doesn’t have support for multiple results, but see the EFEXtensions library for a solution. Also see http://blogs.msdn.com/meek/archive/2008/03/26/ado-entity-framework-stored-procedure-customization.aspx. Scalar results – L2S can auto-map. EF requires manual mapping.Executing without results – L2S uses ExecuteCommand, EF requires creating ADO code as extension method of the context using ExecuteNonQuery
  3. EF:Final projection must be an entity type that has the correct association and it can’t be modified along the way (Group By) see http://wildermuth.com/2008/12/28/Caution_when_Eager_Loading_in_the_Entity_Framework