將帶有嵌套對象的對象傳遞給我的ASP.NET Web API GET方法的URL語法是什麼?這可能嗎? http://mydomain/mycontroller?...
傳遞嵌套複雜類型的REST URL語法是什麼?
myController的GET方法:
public void Get([FromUri]MyType myType) { ... }
C#類型:
public class MyType
{
public string Name { get; set; }
public NestedType Foo { get; set; }
}
public class NestedType
{
public int Bar { get; set; }
}
這看起來像一個有趣的相關討論:http://stackoverflow.com/questions/7104578/rest-complex-composite-nested資源 – JayC