<?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.NamespaceAlias" Alias="tsa"
xmlns="http://docs.oasis-open.org/odata/ns/edm">
<EntityType Name="SomeType">
<Key>
<PropertyRef Name="Id"/>
</Key>
<Property Name="Id" Type="Edm.Int64" Nullable="false" />
</EntityType>
<EntityContainer Name="Container">
<EntitySet Name="SetReferencingByNamespace" EntityType="Test.NamespaceAlias.SomeType" />
<EntitySet Name="SetReferencingByNsAlias" EntityType="tsa.SomeType" />
</EntityContainer>
</Schema>
</edmx:DataServices>
</edmx:Edmx>