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
<!-- https://services.odata.org/V4/TripPinService/$metadata -->
<?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.SampleService.Models.TripPin"
            xmlns="http://docs.oasis-open.org/odata/ns/edm">
            <EnumType Name="PersonGender">
                <Member Name="Male" />
                <Member Name="Female" />
                <Member Name="Unknown" />
            </EnumType>
            <EntityContainer Name="Container" />
        </Schema>
    </edmx:DataServices>
</edmx:Edmx>