net ria services - building data-driven applications with microsoft silverlight and microsoft...

18

Upload: goodfriday

Post on 08-Jul-2015

1.084 views

Category:

Technology


3 download

DESCRIPTION

Learn how Microsoft is simplifying the traditional n-tier application pattern by bringing together ASP.NET and Silverlight. Learn about patterns for working with data, implementing reusable and independently testable application logic, and application services that readily scale with growing requirements.

TRANSCRIPT

Page 1: NET RIA Services - Building Data-Driven Applications with Microsoft Silverlight and Microsoft ASP.NET
Page 2: NET RIA Services - Building Data-Driven Applications with Microsoft Silverlight and Microsoft ASP.NET
Page 3: NET RIA Services - Building Data-Driven Applications with Microsoft Silverlight and Microsoft ASP.NET
Page 4: NET RIA Services - Building Data-Driven Applications with Microsoft Silverlight and Microsoft ASP.NET
Page 5: NET RIA Services - Building Data-Driven Applications with Microsoft Silverlight and Microsoft ASP.NET
Page 6: NET RIA Services - Building Data-Driven Applications with Microsoft Silverlight and Microsoft ASP.NET
Page 7: NET RIA Services - Building Data-Driven Applications with Microsoft Silverlight and Microsoft ASP.NET
Page 8: NET RIA Services - Building Data-Driven Applications with Microsoft Silverlight and Microsoft ASP.NET

Web ApplicationBrowser Rich Internet Application

DB

Services

Other Applications

Data Access

Layer

App

Logic

Services

HTMLPresentation

LogicNetwork

Services

Page 9: NET RIA Services - Building Data-Driven Applications with Microsoft Silverlight and Microsoft ASP.NET
Page 10: NET RIA Services - Building Data-Driven Applications with Microsoft Silverlight and Microsoft ASP.NET

Application

DB

Services

Data Access

Layer

App

Logic

Presentation

LogicNetwork

DomainService: CRUD + App Logicclass CatalogIQueryable<Product> GetProducts()void UpdateProduct(Product, Product)void ToggleSale(Product)Validation and authorization rules,

Application workflows, …

Data Modelclass Product

DomainContext: Bindable Dataclass CatalogEntityList<Product> Products { get }void LoadProducts(IQueryable<Product>)void ToggleSale(Product)

class ProductData members + Validationvoid ToggleSale()

Data Model +Metadata +Shared Code

Page 11: NET RIA Services - Building Data-Driven Applications with Microsoft Silverlight and Microsoft ASP.NET

App

Logic

Databases

ADO.NET,

ORMs (LTS, EF, …)

CLR Lists/Objects

Repository

(nHibernate, …)

Services

REST/SOAP

(Azure, …)

XML, JS

ON, Bina

ry

.NET Clients

Silverlight, WPF

Standards Clients

JavaScript

Server Rendering

HTML, SEO,

Printing, …

Services

WCF

Unit Test

Code

Page 12: NET RIA Services - Building Data-Driven Applications with Microsoft Silverlight and Microsoft ASP.NET
Page 13: NET RIA Services - Building Data-Driven Applications with Microsoft Silverlight and Microsoft ASP.NET
Page 14: NET RIA Services - Building Data-Driven Applications with Microsoft Silverlight and Microsoft ASP.NET
Page 15: NET RIA Services - Building Data-Driven Applications with Microsoft Silverlight and Microsoft ASP.NET
Page 16: NET RIA Services - Building Data-Driven Applications with Microsoft Silverlight and Microsoft ASP.NET

Your feedback is important!

Page 17: NET RIA Services - Building Data-Driven Applications with Microsoft Silverlight and Microsoft ASP.NET

© 2009 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries.

The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market

conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation.

MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

Page 18: NET RIA Services - Building Data-Driven Applications with Microsoft Silverlight and Microsoft ASP.NET