किसी ऑब्जेक्ट को मेरे एएसपी.NET वेब एपीआई जीईटी विधि में नेस्टेड ऑब्जेक्ट से गुजरने के लिए यूआरएल सिंटैक्स क्या है? क्या यह संभव है? http://mydomain/mycontroller?...
नेस्टेड जटिल प्रकार को पारित करने के लिए आरईएसटी यूआरएल सिंटैक्स क्या है?
Mycontroller GET विधि:
public void Get([FromUri]MyType myType) { ... }
सी # प्रकार:
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 -resources – JayC