Author: mibo
Date: Tue May 19 12:28:46 2015
New Revision: 1680269
URL: http://svn.apache.org/r1680269
Log:
Fixed updated namespaces in xml
Modified:
olingo/site/trunk/content/doc/odata4/tutorials/read/tutorial_read.mdtext
Modified:
olingo/site/trunk/content/doc/odata4/tutorials/read/tutorial_read.mdtext
URL:
http://svn.apache.org/viewvc/olingo/site/trunk/content/doc/odata4/tutorials/read/tutorial_read.mdtext?rev=1680269&r1=1680268&r2=1680269&view=diff
==============================================================================
--- olingo/site/trunk/content/doc/odata4/tutorials/read/tutorial_read.mdtext
(original)
+++ olingo/site/trunk/content/doc/odata4/tutorials/read/tutorial_read.mdtext
Tue May 19 12:28:46 2015
@@ -538,7 +538,7 @@ Give us the result below:
<?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 xmlns="http://docs.oasis-open.org/odata/ns/edm"
Namespace="com.example.model">
+ <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm"
Namespace="OData.Demo">
<EntityType Name="Product">
<Key>
<PropertyRef Name="ID"/>
@@ -548,7 +548,7 @@ Give us the result below:
<Property Name="Description" Type="Edm.String"/>
</EntityType>
<EntityContainer Name="Container">
- <EntitySet Name="Products" EntityType="com.example.model.Product"/>
+ <EntitySet Name="Products" EntityType="OData.Demo.Product"/>
</EntityContainer>
</Schema>
</edmx:DataServices>
@@ -943,7 +943,7 @@ The expected result is the metadata docu
<?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 xmlns="http://docs.oasis-open.org/odata/ns/edm"
Namespace="com.example.model">
+ <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm"
Namespace="OData.Demo">
<EntityType Name="Product">
<Key>
<PropertyRef Name="ID"/>
@@ -953,7 +953,7 @@ The expected result is the metadata docu
<Property Name="Description" Type="Edm.String"/>
</EntityType>
<EntityContainer Name="Container">
- <EntitySet Name="Products" EntityType="com.example.model.Product"/>
+ <EntitySet Name="Products" EntityType="OData.Demo.Product"/>
</EntityContainer>
</Schema>
</edmx:DataServices>