<?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.OData.Service.Sample.TrippinInMemory.Models"
xmlns="http://docs.oasis-open.org/odata/ns/edm">
<EntityType Name="Airline" BaseType="Microsoft.OData.Service.Sample.TrippinInMemory.Models.Airport">
<Property Name="AirlineCode" Type="Edm.String" Nullable="false"/>
</EntityType>
<EntityType Name="Airport" BaseType="Microsoft.OData.Service.Sample.TrippinInMemory.Models.Airline">
<Property Name="IcaoCode" Type="Edm.String" Nullable="false"/>
</EntityType>
<EntityContainer Name="Container" />
</Schema>
</edmx:DataServices>
</edmx:Edmx>