您好我想使用Entity framework 5 MVC在Create,Edit页面中显示一个下拉列表。
下拉列表将从Powershell脚本结果解析填充到字符串,类似于此exmaple(无MVC):
Default.aspx的
var shell = PowerShell.Create();
shell.Commands.AddScript("(Get-AzureLocation).DisplayName")
Collection<PSObject> results = shell.Invoke();
foreach (var psObject in results)
{
droplist.Items.Add(psObject.BaseObject.ToString());
}
Default.aspx.cs
<asp:DropDownList ID="droplist" runat="server"></asp:DropDownList><br />
我想用ASP MVC Entity Framework重新创建它,用于创建和编辑表单的一个选项。