1 / 36

Visual Studio “Orcas” & .NET Framework v3.5

Visual Studio “Orcas” & .NET Framework v3.5. Mike Taulty, Daniel Moth Developer & Platform Group Microsoft Ltd Mike.Taulty@microsoft.com Daniel.Moth@microsoft.com http://www.mtaulty.com , http://www.danielmoth.com/Blog. Agenda. Timeline, Packaging Languages Working with Data

hina
Download Presentation

Visual Studio “Orcas” & .NET Framework v3.5

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Visual Studio “Orcas” & .NET Framework v3.5 Mike Taulty, Daniel Moth Developer & Platform Group Microsoft Ltd Mike.Taulty@microsoft.com Daniel.Moth@microsoft.com http://www.mtaulty.com, http://www.danielmoth.com/Blog

  2. Agenda • Timeline, Packaging • Languages • Working with Data • .NET Framework v3.5 • Client Development • Server Side Development

  3. Timeline, Packaging

  4. .NET Through the Ages

  5. Languages

  6. Language Design Goals • Simplify querying data • Integrate query and transform operations • Unify query of data • object, relational, and XML • And • Don’t tie language to specific APIs • Remain 100% backwards compatible

  7. LINQ to Objects

  8. Language Innovations Query expressions var contacts = from c in customers where c.City== "Hove" select new { c.Name, c.Phone }; Local variable type inference Lambda expressions var contacts = customers .Where(c => c.City== "Hove") .Select(c => new { c.Name, c.Phone }); Extension methods Object initializers Anonymous types

  9. Working with Data

  10. LINQ to SQL (System.Data.Linq) LINQ Pattern fromitemNameinsrcExpr join itemNameinsrcExpronkeyExprequalskeyExpr (intoitemName)? letitemName= selExpr wherepredExpr orderby(keyExpr(ascending| descending)?)* selectselExpr group selExprbykeyExpr intoitemName query-body Object Relational Mapping API Code Gen Tools

  11. LINQ to SQL

  12. LINQ to XML(System.Xml.Linq) LINQ Pattern fromitemNameinsrcExpr join itemNameinsrcExpronkeyExprequalskeyExpr (intoitemName)? letitemName= selExpr wherepredExpr orderby(keyExpr(ascending| descending)?)* selectselExpr group selExprbykeyExpr intoitemName query-body New XML API

  13. LINQ to XML

  14. ADO.NET Synchronisation Services • Synchronisation Framework • Online/Offline Applications • 2-tier, N-tier architectures • Client Database • SQL Server Compact Edition • Server Database • Any OLEDB compliant store • “Service” Based Approach Server DB Client DB

  15. Agenda • Timeline, Packaging • Languages • Working with Data • .NET Framework v3.5 • Client Development • Windows, Office, Web • Server Side Development

  16. .NET Framework 3.5

  17. Fx 3.5 - “Green Bits” and “Red Bits” v3.0 v2.0 RTM v3.5.xxxx.xx v2.0. 50727.42 v2.0. 50727.42 v3.0.xx Vista RTM v2.0. 50727.xx v3.0 v3.5 Vista Redist v3.5 Redist v2.0. 50727.312

  18. Multitargeting

  19. Fx 3.5 (green bits) • System.Data.Linq.dll • System.Xml.Linq.dll • System.Web.Extensions.dll • System.DirectoryServices.AccountManagement.dll • System.Management.Instrumentation.dll • System.AddIn.dll, System.AddIn.Contract.dll • System.Net.dll • System.WorkflowServices.dll • System.ServiceModel.Web.dll • System.Core.dll

  20. System.Core

  21. Client Development

  22. Windows Applications • Windows Presentation Foundation • Visual Designer Integrated into IDE • Windows Forms • ClickOnce For FireFox • Consume ASP.NET Provider Services • Better WPF Interoperablity • UAC Manifests

  23. Windows Development

  24. Office 2007 Development • 2003 & 2007 Support • 2007 Customisations • Document Level • Application Level • Office Ribbon Designer • Outlook Form Region Designer • Custom Action Panes • ClickOnce Deployment? ( maybe? )

  25. Office in “Orcas”

  26. Web Applications • Microsoft AJAX Libraries • IDE Enhancements • New HTML Editor • Rich support for CSS • Javascript IntelliSense

  27. Web Development

  28. Mobility in “Orcas” timeframe • Mini Agenda • Visual Studio for Devices • .NET Compact Framework 3.5 • Device Emulator v3 • Windows Mobile 6

  29. Mobile Development

  30. Server Development

  31. Workflow & Communication Foundation(s) • Workflow • WCF Send/Receive • WorkflowServiceHost • Communication Foundation • HTTP without SOAP • XML or JSON serialisation • RSS + ATOM Support • Partial Trust Support

  32. WCF and WF

  33. Summary Codename “Orcas” • Visual Studio “Orcas” • Great for Windows Vista Development • Great for Office 2007 Development • Great for LINQ & .NET Framework v3.5 • Great for Web Development • Pretty Spiffy for .NET 2.0 projects too! • Multitargeting (and no new CLR) • Use the new C#3 and VB9 language features

  34. http://www.danielmoth.com/Blog • http://www.mtaulty.com

More Related