SlideShare a Scribd company logo
1 of 33
Building RESTfull
Data Services
with WebAPI
Gert Drapers (#DataDude)
Principle Software Design Engineer
Agenda
•Overview
•OData Core Libraries
•Web API
•Web API Demo
Overview
OData Value Proposition
• Problem Statement:
• There is no consistent data interoperability protocol for addressing
and manipulating enterprise data across various devices and
platforms
• Value Proposition:
• OData enables consistent REST-based data access from a variety
of back ends including relational databases, file systems, content
management systems, and traditional Web sites
• OData builds on widely-accepted standards like HTTP, JSON,
AtomPub, and URIs to address and access data
What OData Is and Is Not?
• What OData Is:
• Easy, consistent data access via HTTP endpoints
• REST-based data operations: CRUD, Filtering, Sorting, Paging,
Custom Operations, Delta, etc.
• Service centric data definition, operation and annotation
• Schematized and schema-less data sets
• Broadly accepted JSON/ATOM format on the wire
• What OData Is Not:
• Not to replace native or direct data access interface, e.g. ODBC/TDS
for SQL
• Not to replace highly specialized BI technologies like XMLA
OData Status
• OData v4 to be standardized in Feb. in OASIS
• http://docs.oasis-open.org/odata/new-in-odata/v4.0/cn01/new-in-odata-v4.0-
cn01.html
• ODL 6.2
• http://blogs.msdn.com/b/odatateam/archive/2014/04/14/odl-6-2-release-
announcement.aspx
• Web API OData 6.1
• http://blogs.msdn.com/b/odatateam/archive/2014/03/21/odata-6-1-and-odata-
client-6-1-are-now-shipped.aspx
• WCF Data Services moved to OSS
• http://blogs.msdn.com/b/odatateam/archive/2014/03/27/future-direction-of-wcf-
data-services.aspx
http://odata.org/
OData Core Libraries
Technology Basics
Client Server
OData Service
OData
Protocol
Library
OData
Data
Model
Library
Data
Source
Technology .NET
OData Data Model Library Microsoft.odata.edm.dll
OData Protocol Library Microsoft.odata.core.dll
OData Service WCF Data Service/ Web API/ User’s own service
OData Client Library Microsoft.odata.client.dll
Code Generator T4 / item template
OData
Protocol
Library
OData
Data
Model
Library
OData Client
Library
OData
Protocol
Library
OData
Data
Model
Library
How to build client to consume
OData
Business Logic
Dev OData
Service
Metadata request
Use Code Generatror to generate client class
Client
Application
Account account = TestClientContext.Accounts.Where(account => account.AccountID
== 110).Single();
account.Country=”US”;
TestClientContext.UpdateObject(account);
TestClientContext.SaveChanges();
Code Files(Account.cs/
TestClientContext.cs)
Microsoft.odata.client.dll
The client dll will generate the request
based on the property change on the Account object
Get http://localhost:8080/OData/Accounts(110)
Patch http://localhost:8080/OData/Accounts(110)
What’s in Microsoft.OData.Client.dll
•Deserialize/Serialize OData payload
• Using API provided by Microsoft.OData.Core.dll
•Request Generator/LINQ to URL
•Entity Tracker
•Batch support
OData Data Model Library
• OData is based on the Entity Data Model (EDM):
• EDM presents information in a way which is familiar to
many developers dealing with data today making it
easy for them to understand and use.
• Data provider can use OData Data Model Library to
create the EDM model of the data they want to
expose. The client can consume the data based on
the EDM model that exposed by service and figure
out the relationship between entities.
EDM Example
Entity Container
Entity set
(Categories)
Category
CategoryId Product
Entity set
(Products)
Product
ProductId Description
Navigation property binding
EDM Example – Cont.
• <?xml version="1.0" encoding="utf-8"?>
<edmx:Edmx Version="4.0" xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx">
<edmx:DataServices>
<Schema Namespace="Microsoft.Test.OData.Services.ODataWCFService" xmlns="http://docs.oasis-open.org/odata/ns/edm">
<EntityType Name="Category">
<Key>
<PropertyRef Name="CategoryId" />
</Key>
<Property Name="CategoryId" Type="Edm.String" Nullable="false" />
<Property Name="Name" Type="Edm.String" Nullable="false" />
<NavigationProperty Name="Product" Type="Microsoft.Test.OData.Services.ODataWCFService.Product" Nullable="false" />
</EntityType>
<EntityType Name="Product">
<Key>
<PropertyRef Name="ProductId" />
</Key>
<Property Name="ProductId" Type="Edm.String" Nullable="false" />
<Property Name="Name" Type="Edm.String" Nullable="false" />
<Property Name="Desciption" Type="Edm.String" Nullable="false" />
</EntityType>
<EntityContainer Name="ServiceContainer">
<EntitySet Name="Categories" EntityType="Microsoft.Test.OData.Services.ODataWCFService.Category">
<NavigationPropertyBinding Path="Product" Target="Products" />
</EntitySet>
<EntitySet Name="Products" EntityType="Microsoft.Test.OData.Services.ODataWCFService.Product">
</EntitySet>
</EntityContainer>
</Schema>
</edmx:DataServices>
</edmx:Edmx>
EDM Example – Cont.
• Category Entity:
• http://localhost/odata/Categories(1)
• Product under this category
• http://localhost/odata/Categories(1)/Product
• Through navigation binding defined in the Categories
and the navigation property defined in the Category,
target entity set Products can be found
• Entity product can be located in entity set Products
OData Protocol Library
• Deserialize/Serialize payload
• JSON
• Full metadata level
– {
– "@odata.context":"http://localhost:50671/ODataService.svc/OData/$metadata#Products/$entity",
– "@odata.id":"http://localhost:50671/ODataService.svc/OData/Products(5)",
– "@odata.editLink":"http://localhost:50671/ODataService.svc/OData/Products(5)",
– "ProductID":5,
– "Name":"Cheetos",
– "Description":"Cheese curl"
– }
• Minimal metadata level
– Writer only writes the necessary metadata
– Reader will auto complete the metadata during reading
– {
– "@odata.context":"http://localhost:50671/ODataService.svc/OData/$metadata#Products/$entity",
– "ProductID":5,
– "Name":"Cheetos",
– "Description":"Cheese curl"
– }
• No metadata level
– Data only
– {
– "ProductID":5,
– "Name":"Cheetos",
– "Description":"Cheese curl"
– }
• ATOM
OData Protocol Library
• Targeting the target resource based on the URI
• $top=n: Returns only the first n entities in an entity set (or in Atom terms,
the first n entries in a feed)
• $skip=n: Skips the first n entities in an entity set. Using this option lets a
client retrieve a series of distinct pages on subsequent requests
• $format: Determines whether data should be returned in JSON or the XML-
based Atom/AtomPub format
• $orderby=: Orders results, in ascending or descending order, by the value
of one or more properties in those results
• $filter=: Returns only entities that match the specified expression
• $select=: Returns only the specified properties in an entity
• $expand=: Returns the navigation property in an entity
URI Parser
OData Protocol Library – Cont.
• http://services.odata.org/V3/Northwind/Northwind.svc/Order_Details?$top=5
&$select=OrderID,ProductID&$skip=1&$filter=OrderID gt 10248
• Parsed result of request URI as an ODataUri object
• TopCount
• SkipCount
• SelectExpandClause
• List<SelectedItem>
– PathSelectionItem
» Path=OrderID
– PathSelectionItem
» Path=ProductID
• FilterClause
• FilterExpression
OData Web API
WebApi.OData: Overview
•An OData service library
•Build upon a lightweight http stack
•Be part of ASP.NET RESTful framework
•Selective query ability
•Another option to build OData service
Simple way to build OData Service
•No need to know the details of OData Protocol
•POCO (Plain Old CLR Object) model
•ODataConventionModelBuilder: 3 lines of code
var builder = new ODataConventionModelBuilder();
builder.EntitySet<Product>("Products");
IEdmModel model = builder.GetEdmModel();
•ODataController: VS2013 scaffolding
Web API OData Architecture Diagram
Message Handler
Controller Selection
ODataController
Action
Action Filter
MapODataRoute*GetEdmModelModel builderEdm Lib
Spatial Lib
Formatter
OData Lib
Serialize
Deserialize
Query
Entity Framework
DbContext
DbSet
Action Filter
Formatter Model Binder QueryOption
Action Selection
Type system
HttpRequestMessage
HttpResponseMessage
Components
• Model builder
• ODataModelBuilder
• ODataConventionModelBuilder (a 3 lines of code approach)
• Query
• ODL Semantic AST -> LINQ Expression (IQueryable) -> LINQ to * (Entities,
Objects…)
• Routing
• Conventional
• Attribute route
• Formatter
• Serializer: CLR type / typeless -> OData*Value
• Deserializer: OData*Value -> CLR type / typeless
Routing Examples
// Metadata routes to support $metadata and code generation in the
// WCF Data Service client.
configuration.Routes.MapHttpRoute(
ODataRouteNames.Metadata,
"$metadata",
new { Controller = "ODataMetadata", Action = "GetMetadata" }
);
configuration.Routes.MapHttpRoute(
ODataRouteNames.ServiceDocument,
"",
new { Controller = "ODataMetadata", Action = "GetServiceDocument" }
);
Routing Examples…
// Relationship routes (notice the parameters is {type}Id not id,
// this avoids colliding with GetById(id)).
// This code handles requests like ~/ProductFamilies(1)/Products
configuration.Routes.MapHttpRoute(
ODataRouteNames.PropertyNavigation,
"{controller}({parentId})/{navigationProperty}");
// Route for manipulating links, the code allows people to create and
// delete relationships between entities
configuration.Routes.MapHttpRoute(
ODataRouteNames.Link,
"{controller}({id})/$links/{navigationProperty}");
Routing Examples…
// Routes for urls both producing and handling URLs
// like: ~/Product(1), ~/Products() and ~/Products
configuration.Routes.MapHttpRoute(
ODataRouteNames.GetById,
"{controller}({id})");
configuration.Routes.MapHttpRoute(
ODataRouteNames.DefaultWithParentheses,
"{controller}()");
configuration.Routes.MapHttpRoute(
ODataRouteNames.Default,
"{controller}");
Model Builder
• ODataConventionModelBuilder
• Use reflection and conventions to generate an Edm model
• Reflection
• Type
• PropertyInfo
• MethodInfo
• Conventions
• AttributeConvention
• AttributeEdmTypeConvention: [DataContract]
• AttributeEdmPropertyConvention:
• [Key]
• [DataMember]
• [IgnoreDataMember]
• [Required]
• [ConcurrencyCheck]…
ODataModelBuilder
• Take full control
var builder = new ODataModelBuilder();
var products =
builder.EntitySet<Product>("Products");
var product = products.EntityType;
product.HasKey(p => p.ID);
product.Property(p => p.Name);
var rate = product.Action("Rate");
rate.Parameter<int>("Rating");
rate.Returns<double>();
• EntitySetConfiguration
• EntityTypeConfiguration
• PropertyConfiguration
• ProcedureConfiguration
• ParameterConfiguration
Query
• /Products/?$filter=Name eq ‘abc’
• One key differentiator than other Web API implementations
• QueryableAttribute
[Queryable]
public IQueryable<Product> GetProducts()
{
return db.Products;
}
• => ODataQueryOptions
public IEnumerable<Product> GetProducts(ODataQueryOptions options)
{
return options.ApplyTo(db.Products) as IEnumerable<Product>;
}
• FilterQueryOption -> FilterBinder:
• Convert OData AST FilterClause’s QueryNode to Linq Expression
Routing
• IODataRoutingConvention
• string SelectController(ODataPath odataPath, HttpRequestMessage request);
• string SelectAction(ODataPath odataPath, HttpControllerContext controllerContext,
ILookup<string, HttpActionDescriptor> actionMap);
• Convention based route:
• EntitySetRoutingConvention
• EntityRoutingConvention
• ActionRoutingConvention
• FunctionRoutingConvention
• NavigationRoutingConvention
• PropertyRoutingConvention
• Attribute based route:
• AttributeRoutingConvention
• ODataRouteAttribute
• MapODataRoute
Formatter
• Why does webapi.odata need to handle serialization and
deserialization?
• ODL handles OData object model to Payload
• Web API handles POCO to OData OM
• The hook:
[ODataFormatting]
public abstract class ODataController : ApiController
• ODataFormattingAttribute
• Inserts the ODataMediaTypeFormatters into the HttpControllerSettings.Formatters
collection.
• Attaches the request to the OData formatter instance.
• ODataMediaTypeFormatter.Create()
• ODataSerializerProvider / ODataDeserializerProvider
• OData*Serializer / OData*Deserializer
Demo
Build an OData Web API application
Laat ons weten wat u vindt van deze sessie! Vul de evaluatie
in via www.techdaysapp.nl en maak kans op een van de 20
prijzen*. Prijswinnaars worden bekend gemaakt via Twitter
(#TechDaysNL). Gebruik hiervoor de code op uw badge.
Let us know how you feel about this session! Give your
feedback via www.techdaysapp.nl and possibly win one of
the 20 prices*. Winners will be announced via Twitter
(#TechDaysNL). Use your personal code on your badge.
* Over de uitslag kan niet worden gecorrespondeerd, prijzen zijn voorbeelden – All results are final, prices are
examples
Building RESTfull Data Services with WebAPI

More Related Content

What's hot

REST and ASP.NET Web API (Milan)
REST and ASP.NET Web API (Milan)REST and ASP.NET Web API (Milan)
REST and ASP.NET Web API (Milan)
Jef Claes
 
Lyudmila Zharova: Developing Solutions for SharePoint 2010 Using the Client O...
Lyudmila Zharova: Developing Solutions for SharePoint 2010 Using the Client O...Lyudmila Zharova: Developing Solutions for SharePoint 2010 Using the Client O...
Lyudmila Zharova: Developing Solutions for SharePoint 2010 Using the Client O...
SharePoint Saturday NY
 
Taking Advantage of the SharePoint 2013 REST API
Taking Advantage of the SharePoint 2013 REST APITaking Advantage of the SharePoint 2013 REST API
Taking Advantage of the SharePoint 2013 REST API
Eric Shupps
 
SharePoint 2010 Application Development Overview
SharePoint 2010 Application Development OverviewSharePoint 2010 Application Development Overview
SharePoint 2010 Application Development Overview
Rob Windsor
 

What's hot (20)

ASP.NET Web API and HTTP Fundamentals
ASP.NET Web API and HTTP FundamentalsASP.NET Web API and HTTP Fundamentals
ASP.NET Web API and HTTP Fundamentals
 
ASP.NET WEB API Training
ASP.NET WEB API TrainingASP.NET WEB API Training
ASP.NET WEB API Training
 
SharePoint Client Object Model (CSOM)
SharePoint Client Object Model (CSOM)SharePoint Client Object Model (CSOM)
SharePoint Client Object Model (CSOM)
 
Introduction to the SharePoint Client Object Model and REST API
Introduction to the SharePoint Client Object Model and REST APIIntroduction to the SharePoint Client Object Model and REST API
Introduction to the SharePoint Client Object Model and REST API
 
Web API 2 Token Based Authentication
Web API 2 Token Based AuthenticationWeb API 2 Token Based Authentication
Web API 2 Token Based Authentication
 
REST and ASP.NET Web API (Milan)
REST and ASP.NET Web API (Milan)REST and ASP.NET Web API (Milan)
REST and ASP.NET Web API (Milan)
 
Entity Framework Overview
Entity Framework OverviewEntity Framework Overview
Entity Framework Overview
 
Lyudmila Zharova: Developing Solutions for SharePoint 2010 Using the Client O...
Lyudmila Zharova: Developing Solutions for SharePoint 2010 Using the Client O...Lyudmila Zharova: Developing Solutions for SharePoint 2010 Using the Client O...
Lyudmila Zharova: Developing Solutions for SharePoint 2010 Using the Client O...
 
Web API Basics
Web API BasicsWeb API Basics
Web API Basics
 
Introduction to the Client OM in SharePoint 2010
Introduction to the Client OM in SharePoint 2010Introduction to the Client OM in SharePoint 2010
Introduction to the Client OM in SharePoint 2010
 
REST and ASP.NET Web API (Tunisia)
REST and ASP.NET Web API (Tunisia)REST and ASP.NET Web API (Tunisia)
REST and ASP.NET Web API (Tunisia)
 
Session 33 - Session Management using other Techniques
Session 33 - Session Management using other TechniquesSession 33 - Session Management using other Techniques
Session 33 - Session Management using other Techniques
 
Restful webservices
Restful webservicesRestful webservices
Restful webservices
 
JAX-RS 2.0 and OData
JAX-RS 2.0 and ODataJAX-RS 2.0 and OData
JAX-RS 2.0 and OData
 
UDDI in Mule Esb
UDDI in Mule EsbUDDI in Mule Esb
UDDI in Mule Esb
 
Rest & RESTful WebServices
Rest & RESTful WebServicesRest & RESTful WebServices
Rest & RESTful WebServices
 
Session 35 - Design Patterns
Session 35 - Design PatternsSession 35 - Design Patterns
Session 35 - Design Patterns
 
Taking Advantage of the SharePoint 2013 REST API
Taking Advantage of the SharePoint 2013 REST APITaking Advantage of the SharePoint 2013 REST API
Taking Advantage of the SharePoint 2013 REST API
 
Advanced SharePoint Web Part Development
Advanced SharePoint Web Part DevelopmentAdvanced SharePoint Web Part Development
Advanced SharePoint Web Part Development
 
SharePoint 2010 Application Development Overview
SharePoint 2010 Application Development OverviewSharePoint 2010 Application Development Overview
SharePoint 2010 Application Development Overview
 

Viewers also liked

Viewers also liked (6)

The Rocky Cloud Road
The Rocky Cloud RoadThe Rocky Cloud Road
The Rocky Cloud Road
 
Mendeley Demo @ FCI Assiut
Mendeley Demo @ FCI AssiutMendeley Demo @ FCI Assiut
Mendeley Demo @ FCI Assiut
 
Bottom-Line Web Services
Bottom-Line Web ServicesBottom-Line Web Services
Bottom-Line Web Services
 
Testing and Documenting Pragmatic / RESTful Web API
Testing and Documenting Pragmatic / RESTful Web APITesting and Documenting Pragmatic / RESTful Web API
Testing and Documenting Pragmatic / RESTful Web API
 
淺談RESTful API認證 Token機制使用經驗分享
淺談RESTful API認證 Token機制使用經驗分享淺談RESTful API認證 Token機制使用經驗分享
淺談RESTful API認證 Token機制使用經驗分享
 
OData: A Standard API for Data Access
OData: A Standard API for Data AccessOData: A Standard API for Data Access
OData: A Standard API for Data Access
 

Similar to Building RESTfull Data Services with WebAPI

Web Technologies - forms and actions
Web Technologies -  forms and actionsWeb Technologies -  forms and actions
Web Technologies - forms and actions
Aren Zomorodian
 
Apache Olingo - ApacheCon Denver 2014
Apache Olingo - ApacheCon Denver 2014Apache Olingo - ApacheCon Denver 2014
Apache Olingo - ApacheCon Denver 2014
Stephan Klevenz
 

Similar to Building RESTfull Data Services with WebAPI (20)

Practical OData
Practical ODataPractical OData
Practical OData
 
(ATS6-PLAT04) Query service
(ATS6-PLAT04) Query service (ATS6-PLAT04) Query service
(ATS6-PLAT04) Query service
 
SOLID Programming with Portable Class Libraries
SOLID Programming with Portable Class LibrariesSOLID Programming with Portable Class Libraries
SOLID Programming with Portable Class Libraries
 
OData Services
OData ServicesOData Services
OData Services
 
MuleSoft London Community February 2020 - MuleSoft and OData
MuleSoft London Community February 2020 - MuleSoft and ODataMuleSoft London Community February 2020 - MuleSoft and OData
MuleSoft London Community February 2020 - MuleSoft and OData
 
ASP.NET MVC 5 - EF 6 - VS2015
ASP.NET MVC 5 - EF 6 - VS2015ASP.NET MVC 5 - EF 6 - VS2015
ASP.NET MVC 5 - EF 6 - VS2015
 
OData – Super Cola W3
OData – Super Cola W3OData – Super Cola W3
OData – Super Cola W3
 
Intro to .NET for Government Developers
Intro to .NET for Government DevelopersIntro to .NET for Government Developers
Intro to .NET for Government Developers
 
Expose your data as an api is with oracle rest data services -spoug Madrid
Expose your data as an api is with oracle rest data services -spoug MadridExpose your data as an api is with oracle rest data services -spoug Madrid
Expose your data as an api is with oracle rest data services -spoug Madrid
 
OData support in Cast Iron 7.5.1
OData support in Cast Iron 7.5.1OData support in Cast Iron 7.5.1
OData support in Cast Iron 7.5.1
 
Denodo Partner Connect: Technical Webinar - Ask Me Anything
Denodo Partner Connect: Technical Webinar - Ask Me AnythingDenodo Partner Connect: Technical Webinar - Ask Me Anything
Denodo Partner Connect: Technical Webinar - Ask Me Anything
 
OData: Universal Data Solvent or Clunky Enterprise Goo? (GlueCon 2015)
OData: Universal Data Solvent or Clunky Enterprise Goo? (GlueCon 2015)OData: Universal Data Solvent or Clunky Enterprise Goo? (GlueCon 2015)
OData: Universal Data Solvent or Clunky Enterprise Goo? (GlueCon 2015)
 
The Data Web and PLM
The Data Web and PLMThe Data Web and PLM
The Data Web and PLM
 
PI-RDBMS.ppt
PI-RDBMS.pptPI-RDBMS.ppt
PI-RDBMS.ppt
 
Building Software Backend (Web API)
Building Software Backend (Web API)Building Software Backend (Web API)
Building Software Backend (Web API)
 
Web Technologies - forms and actions
Web Technologies -  forms and actionsWeb Technologies -  forms and actions
Web Technologies - forms and actions
 
OData for iOS developers
OData for iOS developersOData for iOS developers
OData for iOS developers
 
Using the Cascade Server Web Service API, by Artur Tomusiak
Using the Cascade Server Web Service API, by Artur TomusiakUsing the Cascade Server Web Service API, by Artur Tomusiak
Using the Cascade Server Web Service API, by Artur Tomusiak
 
Windows 8 Metro apps and the outside world
Windows 8 Metro apps and the outside worldWindows 8 Metro apps and the outside world
Windows 8 Metro apps and the outside world
 
Apache Olingo - ApacheCon Denver 2014
Apache Olingo - ApacheCon Denver 2014Apache Olingo - ApacheCon Denver 2014
Apache Olingo - ApacheCon Denver 2014
 

Recently uploaded

+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
Health
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
masabamasaba
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
masabamasaba
 
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
masabamasaba
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
masabamasaba
 
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Medical / Health Care (+971588192166) Mifepristone and Misoprostol tablets 200mg
 

Recently uploaded (20)

AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With SimplicityWSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
tonesoftg
tonesoftgtonesoftg
tonesoftg
 
What Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the SituationWhat Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the Situation
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto
 
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni%in Benoni+277-882-255-28 abortion pills for sale in Benoni
%in Benoni+277-882-255-28 abortion pills for sale in Benoni
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
 
Artyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptxArtyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptx
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
 
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
 

Building RESTfull Data Services with WebAPI

  • 1. Building RESTfull Data Services with WebAPI Gert Drapers (#DataDude) Principle Software Design Engineer
  • 4. OData Value Proposition • Problem Statement: • There is no consistent data interoperability protocol for addressing and manipulating enterprise data across various devices and platforms • Value Proposition: • OData enables consistent REST-based data access from a variety of back ends including relational databases, file systems, content management systems, and traditional Web sites • OData builds on widely-accepted standards like HTTP, JSON, AtomPub, and URIs to address and access data
  • 5. What OData Is and Is Not? • What OData Is: • Easy, consistent data access via HTTP endpoints • REST-based data operations: CRUD, Filtering, Sorting, Paging, Custom Operations, Delta, etc. • Service centric data definition, operation and annotation • Schematized and schema-less data sets • Broadly accepted JSON/ATOM format on the wire • What OData Is Not: • Not to replace native or direct data access interface, e.g. ODBC/TDS for SQL • Not to replace highly specialized BI technologies like XMLA
  • 6. OData Status • OData v4 to be standardized in Feb. in OASIS • http://docs.oasis-open.org/odata/new-in-odata/v4.0/cn01/new-in-odata-v4.0- cn01.html • ODL 6.2 • http://blogs.msdn.com/b/odatateam/archive/2014/04/14/odl-6-2-release- announcement.aspx • Web API OData 6.1 • http://blogs.msdn.com/b/odatateam/archive/2014/03/21/odata-6-1-and-odata- client-6-1-are-now-shipped.aspx • WCF Data Services moved to OSS • http://blogs.msdn.com/b/odatateam/archive/2014/03/27/future-direction-of-wcf- data-services.aspx http://odata.org/
  • 8. Technology Basics Client Server OData Service OData Protocol Library OData Data Model Library Data Source Technology .NET OData Data Model Library Microsoft.odata.edm.dll OData Protocol Library Microsoft.odata.core.dll OData Service WCF Data Service/ Web API/ User’s own service OData Client Library Microsoft.odata.client.dll Code Generator T4 / item template OData Protocol Library OData Data Model Library OData Client Library OData Protocol Library OData Data Model Library
  • 9. How to build client to consume OData Business Logic Dev OData Service Metadata request Use Code Generatror to generate client class Client Application Account account = TestClientContext.Accounts.Where(account => account.AccountID == 110).Single(); account.Country=”US”; TestClientContext.UpdateObject(account); TestClientContext.SaveChanges(); Code Files(Account.cs/ TestClientContext.cs) Microsoft.odata.client.dll The client dll will generate the request based on the property change on the Account object Get http://localhost:8080/OData/Accounts(110) Patch http://localhost:8080/OData/Accounts(110)
  • 10. What’s in Microsoft.OData.Client.dll •Deserialize/Serialize OData payload • Using API provided by Microsoft.OData.Core.dll •Request Generator/LINQ to URL •Entity Tracker •Batch support
  • 11. OData Data Model Library • OData is based on the Entity Data Model (EDM): • EDM presents information in a way which is familiar to many developers dealing with data today making it easy for them to understand and use. • Data provider can use OData Data Model Library to create the EDM model of the data they want to expose. The client can consume the data based on the EDM model that exposed by service and figure out the relationship between entities.
  • 12. EDM Example Entity Container Entity set (Categories) Category CategoryId Product Entity set (Products) Product ProductId Description Navigation property binding
  • 13. EDM Example – Cont. • <?xml version="1.0" encoding="utf-8"?> <edmx:Edmx Version="4.0" xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx"> <edmx:DataServices> <Schema Namespace="Microsoft.Test.OData.Services.ODataWCFService" xmlns="http://docs.oasis-open.org/odata/ns/edm"> <EntityType Name="Category"> <Key> <PropertyRef Name="CategoryId" /> </Key> <Property Name="CategoryId" Type="Edm.String" Nullable="false" /> <Property Name="Name" Type="Edm.String" Nullable="false" /> <NavigationProperty Name="Product" Type="Microsoft.Test.OData.Services.ODataWCFService.Product" Nullable="false" /> </EntityType> <EntityType Name="Product"> <Key> <PropertyRef Name="ProductId" /> </Key> <Property Name="ProductId" Type="Edm.String" Nullable="false" /> <Property Name="Name" Type="Edm.String" Nullable="false" /> <Property Name="Desciption" Type="Edm.String" Nullable="false" /> </EntityType> <EntityContainer Name="ServiceContainer"> <EntitySet Name="Categories" EntityType="Microsoft.Test.OData.Services.ODataWCFService.Category"> <NavigationPropertyBinding Path="Product" Target="Products" /> </EntitySet> <EntitySet Name="Products" EntityType="Microsoft.Test.OData.Services.ODataWCFService.Product"> </EntitySet> </EntityContainer> </Schema> </edmx:DataServices> </edmx:Edmx>
  • 14. EDM Example – Cont. • Category Entity: • http://localhost/odata/Categories(1) • Product under this category • http://localhost/odata/Categories(1)/Product • Through navigation binding defined in the Categories and the navigation property defined in the Category, target entity set Products can be found • Entity product can be located in entity set Products
  • 15. OData Protocol Library • Deserialize/Serialize payload • JSON • Full metadata level – { – "@odata.context":"http://localhost:50671/ODataService.svc/OData/$metadata#Products/$entity", – "@odata.id":"http://localhost:50671/ODataService.svc/OData/Products(5)", – "@odata.editLink":"http://localhost:50671/ODataService.svc/OData/Products(5)", – "ProductID":5, – "Name":"Cheetos", – "Description":"Cheese curl" – } • Minimal metadata level – Writer only writes the necessary metadata – Reader will auto complete the metadata during reading – { – "@odata.context":"http://localhost:50671/ODataService.svc/OData/$metadata#Products/$entity", – "ProductID":5, – "Name":"Cheetos", – "Description":"Cheese curl" – } • No metadata level – Data only – { – "ProductID":5, – "Name":"Cheetos", – "Description":"Cheese curl" – } • ATOM
  • 16. OData Protocol Library • Targeting the target resource based on the URI • $top=n: Returns only the first n entities in an entity set (or in Atom terms, the first n entries in a feed) • $skip=n: Skips the first n entities in an entity set. Using this option lets a client retrieve a series of distinct pages on subsequent requests • $format: Determines whether data should be returned in JSON or the XML- based Atom/AtomPub format • $orderby=: Orders results, in ascending or descending order, by the value of one or more properties in those results • $filter=: Returns only entities that match the specified expression • $select=: Returns only the specified properties in an entity • $expand=: Returns the navigation property in an entity URI Parser
  • 17. OData Protocol Library – Cont. • http://services.odata.org/V3/Northwind/Northwind.svc/Order_Details?$top=5 &$select=OrderID,ProductID&$skip=1&$filter=OrderID gt 10248 • Parsed result of request URI as an ODataUri object • TopCount • SkipCount • SelectExpandClause • List<SelectedItem> – PathSelectionItem » Path=OrderID – PathSelectionItem » Path=ProductID • FilterClause • FilterExpression
  • 19. WebApi.OData: Overview •An OData service library •Build upon a lightweight http stack •Be part of ASP.NET RESTful framework •Selective query ability •Another option to build OData service
  • 20. Simple way to build OData Service •No need to know the details of OData Protocol •POCO (Plain Old CLR Object) model •ODataConventionModelBuilder: 3 lines of code var builder = new ODataConventionModelBuilder(); builder.EntitySet<Product>("Products"); IEdmModel model = builder.GetEdmModel(); •ODataController: VS2013 scaffolding
  • 21. Web API OData Architecture Diagram Message Handler Controller Selection ODataController Action Action Filter MapODataRoute*GetEdmModelModel builderEdm Lib Spatial Lib Formatter OData Lib Serialize Deserialize Query Entity Framework DbContext DbSet Action Filter Formatter Model Binder QueryOption Action Selection Type system HttpRequestMessage HttpResponseMessage
  • 22. Components • Model builder • ODataModelBuilder • ODataConventionModelBuilder (a 3 lines of code approach) • Query • ODL Semantic AST -> LINQ Expression (IQueryable) -> LINQ to * (Entities, Objects…) • Routing • Conventional • Attribute route • Formatter • Serializer: CLR type / typeless -> OData*Value • Deserializer: OData*Value -> CLR type / typeless
  • 23. Routing Examples // Metadata routes to support $metadata and code generation in the // WCF Data Service client. configuration.Routes.MapHttpRoute( ODataRouteNames.Metadata, "$metadata", new { Controller = "ODataMetadata", Action = "GetMetadata" } ); configuration.Routes.MapHttpRoute( ODataRouteNames.ServiceDocument, "", new { Controller = "ODataMetadata", Action = "GetServiceDocument" } );
  • 24. Routing Examples… // Relationship routes (notice the parameters is {type}Id not id, // this avoids colliding with GetById(id)). // This code handles requests like ~/ProductFamilies(1)/Products configuration.Routes.MapHttpRoute( ODataRouteNames.PropertyNavigation, "{controller}({parentId})/{navigationProperty}"); // Route for manipulating links, the code allows people to create and // delete relationships between entities configuration.Routes.MapHttpRoute( ODataRouteNames.Link, "{controller}({id})/$links/{navigationProperty}");
  • 25. Routing Examples… // Routes for urls both producing and handling URLs // like: ~/Product(1), ~/Products() and ~/Products configuration.Routes.MapHttpRoute( ODataRouteNames.GetById, "{controller}({id})"); configuration.Routes.MapHttpRoute( ODataRouteNames.DefaultWithParentheses, "{controller}()"); configuration.Routes.MapHttpRoute( ODataRouteNames.Default, "{controller}");
  • 26. Model Builder • ODataConventionModelBuilder • Use reflection and conventions to generate an Edm model • Reflection • Type • PropertyInfo • MethodInfo • Conventions • AttributeConvention • AttributeEdmTypeConvention: [DataContract] • AttributeEdmPropertyConvention: • [Key] • [DataMember] • [IgnoreDataMember] • [Required] • [ConcurrencyCheck]…
  • 27. ODataModelBuilder • Take full control var builder = new ODataModelBuilder(); var products = builder.EntitySet<Product>("Products"); var product = products.EntityType; product.HasKey(p => p.ID); product.Property(p => p.Name); var rate = product.Action("Rate"); rate.Parameter<int>("Rating"); rate.Returns<double>(); • EntitySetConfiguration • EntityTypeConfiguration • PropertyConfiguration • ProcedureConfiguration • ParameterConfiguration
  • 28. Query • /Products/?$filter=Name eq ‘abc’ • One key differentiator than other Web API implementations • QueryableAttribute [Queryable] public IQueryable<Product> GetProducts() { return db.Products; } • => ODataQueryOptions public IEnumerable<Product> GetProducts(ODataQueryOptions options) { return options.ApplyTo(db.Products) as IEnumerable<Product>; } • FilterQueryOption -> FilterBinder: • Convert OData AST FilterClause’s QueryNode to Linq Expression
  • 29. Routing • IODataRoutingConvention • string SelectController(ODataPath odataPath, HttpRequestMessage request); • string SelectAction(ODataPath odataPath, HttpControllerContext controllerContext, ILookup<string, HttpActionDescriptor> actionMap); • Convention based route: • EntitySetRoutingConvention • EntityRoutingConvention • ActionRoutingConvention • FunctionRoutingConvention • NavigationRoutingConvention • PropertyRoutingConvention • Attribute based route: • AttributeRoutingConvention • ODataRouteAttribute • MapODataRoute
  • 30. Formatter • Why does webapi.odata need to handle serialization and deserialization? • ODL handles OData object model to Payload • Web API handles POCO to OData OM • The hook: [ODataFormatting] public abstract class ODataController : ApiController • ODataFormattingAttribute • Inserts the ODataMediaTypeFormatters into the HttpControllerSettings.Formatters collection. • Attaches the request to the OData formatter instance. • ODataMediaTypeFormatter.Create() • ODataSerializerProvider / ODataDeserializerProvider • OData*Serializer / OData*Deserializer
  • 31. Demo Build an OData Web API application
  • 32. Laat ons weten wat u vindt van deze sessie! Vul de evaluatie in via www.techdaysapp.nl en maak kans op een van de 20 prijzen*. Prijswinnaars worden bekend gemaakt via Twitter (#TechDaysNL). Gebruik hiervoor de code op uw badge. Let us know how you feel about this session! Give your feedback via www.techdaysapp.nl and possibly win one of the 20 prices*. Winners will be announced via Twitter (#TechDaysNL). Use your personal code on your badge. * Over de uitslag kan niet worden gecorrespondeerd, prijzen zijn voorbeelden – All results are final, prices are examples