<edmx:Edmx xmlns:edmx="http://schemas.microsoft.com/ado/2007/06/edmx"
	Version="1.0">
	<edmx:DataServices
		xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata"
		m:DataServiceVersion="1.0" m:MaxDataServiceVersion="3.0">
		<Schema xmlns="http://schemas.microsoft.com/ado/2008/09/edm"
			Namespace="NorthwindModel">
			<EntityType Name="Employee">
				<Key>
					<PropertyRef Name="EmployeeID" />
				</Key>
				<Property xmlns:p6="http://schemas.microsoft.com/ado/2009/02/edm/annotation"
					Name="EmployeeID" Type="Edm.Int32" Nullable="false"
					p6:StoreGeneratedPattern="Identity" />
				<Property Name="LastName" Type="Edm.String" Nullable="false"
					MaxLength="20" FixedLength="false" Unicode="true" />
				<Property Name="FirstName" Type="Edm.String" Nullable="false"
					MaxLength="10" FixedLength="false" Unicode="true" />
				<Property Name="Title" Type="Edm.String" MaxLength="30"
					FixedLength="false" Unicode="true" />
				<Property Name="TitleOfCourtesy" Type="Edm.String"
					MaxLength="25" FixedLength="false" Unicode="true" />
				<Property Name="Address" Type="Edm.String" MaxLength="60"
					FixedLength="false" Unicode="true" />
				<Property Name="City" Type="Edm.String" MaxLength="15"
					FixedLength="false" Unicode="true" />
				<Property Name="Region" Type="Edm.String" MaxLength="15"
					FixedLength="false" Unicode="true" />
				<Property Name="PostalCode" Type="Edm.String" MaxLength="10"
					FixedLength="false" Unicode="true" />
				<Property Name="Country" Type="Edm.String" MaxLength="15"
					FixedLength="false" Unicode="true" />
				<Property Name="HomePhone" Type="Edm.String" MaxLength="24"
					FixedLength="false" Unicode="true" />
				<Property Name="Extension" Type="Edm.String" MaxLength="4"
					FixedLength="false" Unicode="true" />
				<Property Name="Notes" Type="Edm.String" MaxLength="Max"
					FixedLength="false" Unicode="true" />
				<Property Name="ReportsTo" Type="Edm.Int32" />
				<NavigationProperty Name="Employees1"
					Relationship="NorthwindModel.FK_Employees_Employees" ToRole="Employees1"
					FromRole="Employees" />
			</EntityType>
			<Association Name="FK_Employees_Employees">
				<End Type="NorthwindModel.Employee" Role="Employees1"
					Multiplicity="*" />
				<ReferentialConstraint>
					<Principal Role="Employees">
						<PropertyRef Name="EmployeeID" />
					</Principal>
					<Dependent Role="Employees1">
						<PropertyRef Name="ReportsTo" />
					</Dependent>
				</ReferentialConstraint>
			</Association>
		</Schema>
		<Schema xmlns="http://schemas.microsoft.com/ado/2008/09/edm"
			Namespace="ODataWebV3.Northwind.Model">
			<EntityContainer
				xmlns:p6="http://schemas.microsoft.com/ado/2009/02/edm/annotation"
				Name="NorthwindEntities" m:IsDefaultEntityContainer="true"
				p6:LazyLoadingEnabled="true">
				<EntitySet Name="Employees" EntityType="NorthwindModel.Employee" />
				<AssociationSet Name="FK_Employees_Employees"
					Association="NorthwindModel.FK_Employees_Employees">
					<End Role="Employees" EntitySet="Employees" />
					<End Role="Employees1" EntitySet="Employees" />
				</AssociationSet>
			</EntityContainer>
		</Schema>
	</edmx:DataServices>
</edmx:Edmx>