, OData , API OData. OData deep insert. .
,
1) . json :
{
‘Property1’: 42,
‘Property2’: ‘Contoso’,
‘Children’: [
{
‘ChildProperty’: 1,
……….
},
{
‘ChildProperty’: 2,
……….
}]
}
2) , . OData . :
{
‘Property1’: 42,
‘Property2’: ‘Contoso’,
‘Children@odata.bind’: [
"http://localhost/Children(1)",
"http://localhost/Children(2)",
]
}
Web API OData ( ). Parent Children.
:
1) ~/Parents(321)/Children URL
2) ~/Children, POST ID URL ~/Parents(321)/$links/Children.