ビューに次のモデルとシンプルなドロップダウンがあります。ドロップダウンに顧客名を入力したい。次のコードを試しましたが、うまくいきませんでした。このコードの何が問題なのですか。
モデル
public class customer
{
public int id { get; set; }
public string name { get; set; }
public string address { get; set; }
}
//////////////////////////
@{
Layout = null;
}
@model IEnumerable<MvcApplication1.customer>
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Index</title>
</head>
<body>
<div>
@Html.DropDownListFor(m=>m.name, new SelectList(Model,"id","name"));
</div>