HTML 5入力コントロールの値をdbに挿入しようとしていますが、その値はnullとして挿入されています.Hereが私のコードです. 意見:
@Html.LabelFor( m => m.noOfCars)
<input type="number" min="1" max="1000" step="1">
モデル:
public string noOfCars { get; set; }
コントローラ:
[httpPost]
public ActionResult AddVehicles(AddSpaces adspace)
{
if (ModelState.IsValid)
{
string userName = User.Identity.Name;
var queryUser = from user in Session.Query<AddSpaces>()
where user.email == userName
select user;
if (queryUser.Count() > 0)
{
foreach (var updateSpaces in queryUser)
{
updateSpaces.BPH = adspace.noOfCars;
}
Session.SaveChanges();
}
}
}
モデルの noOfCars プロパティを int に変更しましたが、機能しません。