odata_client_codegen 0.1.0

Strongly-typed OData client code generation
Documentation
<?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="Test.EntitySetNameCollision"
            xmlns="http://docs.oasis-open.org/odata/ns/edm">
            <EntityType Name="SomeType">
                <Key>
                    <PropertyRef Name="Id" />
                </Key>
                <Property Name="Id" Type="Edm.Int32" Nullable="false" />
            </EntityType>
            <EntityContainer Name="Container">
                <Singleton Name="someTypeSingle" Type="Test.EntitySetNameCollision.SomeType" />
                <Singleton Name="SomeTypeSingle" Type="Test.EntitySetNameCollision.SomeType" />
            </EntityContainer>
        </Schema>
    </edmx:DataServices>
</edmx:Edmx>