标签: asp.net-mvc-3 modelbinders custom-model-binder
是否可以为这样的东西添加模型绑定器?
public class Foo { public TagCollection Tags { get; set; } public Test() { Tags = new TagCollection(); } }