<?xml version="1.0" encoding="UTF-8"?>
<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
    <edmx:DataServices>
        <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Controller">
            <EntityContainer Name="Default">
                <EntitySet Name="SimpleEntity" EntityType="Default.SimpleEntity" />
            </EntityContainer>
        </Schema>
        <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Default">
            <EntityType Name="SimpleEntity">
                <Key>
                    <PropertyRef Name="MongoId" />
                </Key>
                <Property Name="MongoId" Type="Simple.ObjectID" Nullable="false">
                    <Annotation Term="Org.OData.Core.V1.Computed" Bool="true" />
                </Property>
            </EntityType>
        </Schema>
        <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Simple">
            <TypeDefinition Name="ObjectID" UnderlyingType="Edm.String"></TypeDefinition>
        </Schema>
    </edmx:DataServices>
</edmx:Edmx>