<?xml version="1.0" encoding="utf-8"?>
<edmx:Edmx Version="2.0" xmlns:edmx="...">
<edmx:Runtime>
<!-- CSDL content -->
<edmx:ConceptualModels>
<Schema Namespace="SampleModel" Alias="Self"...>
<EntityContainer Name="*SampleEntities*" annotation:LazyLoadingEnabled="true">
<EntitySet></EntitySet>
<AssociationSet Name="FK_Address_Contact" Association=""SampleModel.FK_Address_Contact">
<End Role="Contact" EntitySet="Contacts">
<End Role="Address" EntitySet="Addresses">
</AssociationSet>
` </EntityContainer>
<EntityType Name="Address" Type="SampleModel.Address">
<Key>
<EntityType Name="addressId"/>
</Key>
<Property Name "addressId" Type="Int32" Nullable="false"/>
...
<NavigationProperty Name="Contact"
Relationship="SampleModel.FK_Address_Contact"
FromRole="Address" ToRole="Contact"/>
</EntityType>
...
<EntityType Name="Contact" Type="SampleModel.Contact">
...
</EntityType>
<AssociationType Name="FK_Address_Cont"/>
</EntityContainer
</Schema>
</edmx:ConceptualModels>
<!-- SSDL content -->
<edmx:ConceptualModels>
<EntityContainer>
<EntitySet></EntitySet>
<AssociationSet>...</AssociationSet>
</EntityContainer>
<EntityType Name="Address">
<Key>
<EntityType Name="addressID"/>
</Key>
<Property Name "addressID" Type="int" Nullable="false"/>
...
<!-- Note, no nav properties...-->
</EntityType>
...
<EntityType Name="Contact">
...
</EntityType>
</edmx:ConceptualModels>
</edmx:Runtime>
</emdx:Edmx>