所以说我有一个 ViewModel 叫
示例视图模型
其中包含 3 个实体,称为
实体一
实体二
实体三
现在我在控制器动作中有一个动作,看起来有点像这样
public ActionResult TestAction(string Destination)
{
SampleViewModel sampleViewModel = new SampleViewModel();
}
现在我希望能够根据字符串“Destination”的设置来选择特定实体。Destination 将始终设置为“entityOne”、“entityTwo”或“entityThree”。所以基本上我想打电话
sampleViewModel.entityOne
如果字符串包含“entityOne”。
所以在影响我说
sampleViewModel.Destination //Where destination is equal to the one entity in the ViewModel
我怎样才能做到这一点?
谢谢