つまり、ViewModel という名前があるとします。
SampleViewModel
と呼ばれる3つのエンティティが含まれています
エンティティワン
エンティティ2
エンティティ3
これで、コントローラーアクションに次のようなアクションがあります
public ActionResult TestAction(string Destination)
{
SampleViewModel sampleViewModel = new SampleViewModel();
}
文字列「Destination」の設定内容に応じて、特定のエンティティを選択できるようにしたいと考えています。宛先は常に「entityOne」、「entityTwo」、または「entityThree」として設定されます。だから基本的に私は電話したい
sampleViewModel.entityOne
文字列に「entityOne」が含まれている場合。
だから影響で私は言っています
sampleViewModel.Destination //Where destination is equal to the one entity in the ViewModel
これどうやってするの?
ありがとう