Getting started Community Training Tutorials Documentation APIs, AI & Tools
<?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 xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="odata4.namespace">
<EntityType Name="Customers"> (1)
<Key> (2)
<PropertyRef Name="CustomerID" />
</Key>
<Property Name="CompanyName" Type="Edm.String" MaxLength="40" Unicode="false" />
<Property Name="ContactName" Type="Edm.String" MaxLength="30" Unicode="false" />
<Property Name="ContactTitle" Type="Edm.String" MaxLength="30" Unicode="false" />
<Property Name="CustomerID" Type="Edm.String" Nullable="false" MaxLength="5" Unicode="false" />
<NavigationProperty Name="Orders" Type="Collection(odata4.namespace.Orders)"/>
</EntityType>
<EntityType Name="Orders">
<Key>
<PropertyRef Name="OrderID" />
<PropertyRef Name="ShipName" />
</Key>
<Property Name="Freight" Type="Edm.Decimal" Precision="19" Scale="4" />
<Property Name="OrderDate" Type="Edm.DateTimeOffset" Unicode="false" />
<Property Name="OrderID" Type="Edm.Int32" Nullable="false" Unicode="false" />
<Property Name="CustomerID" Type="Edm.String" MaxLength="5"/>
<Property Name="Price" Type="Edm.Single" Unicode="false" />
<Property Name="Priority" Type="Edm.Int16" Unicode="false" />
<Property Name="ShipAddress" Type="Edm.String" MaxLength="60" Unicode="false" />
<Property Name="ShipName" Type="Edm.String" Nullable="false" MaxLength="40" Unicode="false" />
<NavigationProperty Name="Customer" Type="odata4.namespace.Customers">
<ReferentialConstraint Property="CustomerID" ReferencedProperty="CustomerID" />
</NavigationProperty>
</EntityType>
<EntityContainer Name="OData4EntityContainer"> (3)
<EntitySet Name="Customers" EntityType="odata4.namespace.Customers"> (4)
<NavigationPropertyBinding Path="Orders" Target="Orders"/>
</EntitySet>
<EntitySet Name="Orders" EntityType="odata4.namespace.Orders"/>
</EntityContainer>
</Schema>
</edmx:DataServices>
</edmx:Edmx>



