odata_client_codegen 0.1.0

Strongly-typed OData client code generation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?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>