次に示すように、エンティティをその子リストで更新する必要があります。
public class Entity1
{
int Id{get;set;}
ObservableCollection<Child1> ChildrenList {get;set;}
string Name{get;set;}
}
public class Child1
{
string Nome{get;set;}
string Cognome {get;set;}
}
この方法で patch メソッドを実装しました。
[AcceptVerbs("PATCH", "MERGE")]
public async Task<IHttpActionResult> Patch([FromODataUri] int key, Delta<Entity1> entityDelta)
{
if (!ModelState.IsValid)
{
return BadRequest(ModelState);
}
var entity = await Context.Entity1.FindAsync(key);
if (entity == null)
{
return NotFound();
}
entityDelta.Patch(entity);
try
{
await Context.SaveChangesAsync();
}
catch (DbUpdateConcurrencyException)
{
return NotFound();
}
return Updated(entity);
}
しかし、この方法でフィドラーから呼び出そうとすると:
Url: http://localhost/odata4/Entity1(1)/ with patch request
Request Headers: Content-Type: application/json
Request Body:
{
Name: "pippo2",
ChildrenList:[{
Nome: "Test",
Cognome: "Pippo"
}]
}
Model.isValid プロパティでエラーが発生し、指定すると次のエラーが返されます。
エンティティ タイプ 'Entity1' のナビゲーション プロパティ 'ChildrenList' に PATCH を適用できません。
どうすれば解決できますか?パッチ法は正しい使用法ですか?