我有两个父子数据表,分别是A和B,父和子。我为A和B创建了两个独立的控制器。我必须做什么来支持控制器级别的父子关系?将Controller A定义为Controller B的父级是否属实?
public class A :Controller
{
public ActionResult foo(){}
}
public class B :Controller
{
//need to use foo()!
}
我能拥有它吗?
public class B:A{}
我认为,MVC强调关注点分离,每个控制器必须单独和自主地工作。我是真的吗?我必须做什么?