-1

我是新手 ASP.NET MVC。

我有很多表,例如(国家、州和城市)。我想将这些 DropDownListFor 的价值放在一个视图中。请问你能帮帮我吗。

对不起我的问题和糟糕的英语技能。

4

1 回答 1

0

使用来自所有表的所有属性的视图模型

public class dataViewModel
{
public string country { get; set; }
public string state{ get; set; }
//all other properties from other class
}

参考视图中的视图模型。

于 2017-12-07T04:46:41.843 回答