Skip to content

Commit

Permalink
corrected id type
Browse files Browse the repository at this point in the history
  • Loading branch information
HeikoTheissen committed Aug 29, 2024
1 parent 8e0b9a5 commit 8649020
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/Common.CorrespondingContentIDs-sample.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"corresponding.sample": {
"$Alias": "self",
"SalesQuotation": { "$Kind": "EntityType", "id": { "$Nullable": true } },
"SalesQuotation": { "$Kind": "EntityType", "id": { "$Type": "Edm.Int16", "$Nullable": true } },
"SalesQuotationItemToBeCopied": { "$Kind": "ComplexType", "product": { "$Nullable": true } },
"SalesOrder": {
"$Kind": "EntityType",
Expand Down
2 changes: 1 addition & 1 deletion examples/Common.CorrespondingContentIDs-sample.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<edmx:DataServices>
<Schema Namespace="corresponding.sample" Alias="self" xmlns="http://docs.oasis-open.org/odata/ns/edm">
<EntityType Name="SalesQuotation">
<Property Name="id" Type="Edm.String" />
<Property Name="id" Type="Edm.Int16" />
</EntityType>
<ComplexType Name="SalesQuotationItemToBeCopied">
<Property Name="product" Type="Edm.String" />
Expand Down

0 comments on commit 8649020

Please sign in to comment.