Ok, I have 2 models that inherit from one abstract class:
public abstract class Search
{
[Required]
public string Name{get;set;}
}
public class PageModelA : Search
{}
public class PageModelB : Search
{}
The search page is a partial view.
How can I pass either of these models to one action method:
[HttpPost]
public ActionResult Search(??? search)
{}
Thanks!
You could create a view model that contains both objects. Then pass only the appropriate model and checking for
null
on the controller.