Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是新手 ASP.NET MVC。
我有很多表,例如(国家、州和城市)。我想将这些 DropDownListFor 的价值放在一个视图中。请问你能帮帮我吗。
对不起我的问题和糟糕的英语技能。
使用来自所有表的所有属性的视图模型
public class dataViewModel { public string country { get; set; } public string state{ get; set; } //all other properties from other class }
参考视图中的视图模型。