これは、派生クラスをインスタンス化するために使用されるカスタム モデル バインダーです。
public class LocationModalBinder : DefaultModelBinder
{
protected override object CreateModel(ControllerContext controllerContext, ModelBindingContext bindingContext,
Type modelType)
{
var type = bindingContext.ModelName + "." + "type";
Type typeToInstantiate;
switch ((string) bindingContext.ValueProvider.GetValue(type).RawValue)
{
case "store":
{
typeToInstantiate = typeof (Store);
break;
}
case "billing":
{
typeToInstantiate = typeof(LocationReference);
break;
}
case "alternate":
{
typeToInstantiate = typeof(Address);
break;
}
default:
{
throw new Exception("Unknown location identifier.");
}
}
return base.CreateModel(controllerContext, bindingContext, typeToInstantiate);
}
}
問題は、サブタイプのプロパティをバインドしないことです。基本型のプロパティのみLocation
。どうしてこれなの?