dropdownList插入NULL

时间:2013-03-04 23:29:15

标签: c# c#-4.0 razor asp.net-mvc-4

我在这里搜索很多并找到这样的东西来制作下拉列表

这是我的控制器: 这传递了我的dropDownList ...

数据
public ActionResult Create()
{
    var dba = new WHFMDBContext();
    var query = dba.Categories.Select(c => new { c.Id, c.Name });
    ViewBag.Id = new SelectList(query.AsEnumerable(), "Id", "Name", 3);
    return View();
}




[HttpPost]
        [InitializeSimpleMembership]
        public ActionResult Create(Profits profits)
        {
            var user = db.UserProfiles.FirstOrDefault(x => x.UserId == WebSecurity.CurrentUserId);
            var profit = new Profits
            {
               Value= profits.Value,
               Description = profits.Description,
               DateInput =profits.DateInput,
               CategoryName =profits.CategoryName,// ???
                User = user,

            };
            db.Profits.Add(profit);
            db.SaveChanges();
            return RedirectToAction("Index");
        }

我的观点:

@model WebHFM.Models.Profits



@using (Html.BeginForm()) {
    @Html.ValidationSummary(true)

    <fieldset>
        <legend>Profits</legend>

        <div class="editor-field">
           @Html.DropDownList("Id", (SelectList) ViewBag.Id, "--Select One--") 
            </div>
        <div class="editor-field">
            @Html.EditorFor(model => model.CategoryName.Id)
            @Html.ValidationMessageFor(model => model.CategoryName.Id)
        </div>

        <div class="editor-label">
            @Html.LabelFor(model => model.Value)
        </div>
        <div class="editor-field">
            @Html.EditorFor(model => model.Value)
            @Html.ValidationMessageFor(model => model.Value)
        </div>...

这个数据插入到数据库但是CategoryName_Id是NULL我错过了什么? 和CategoryName = profits.CategoryName这是利润public Categories CategoryName { get; set; }

中类别的外键

1 个答案:

答案 0 :(得分:5)

在您的ID上调用.ToString()

model.CategoryMenu = db.Categories.Select(c => new SelectListItem {
                                                    Text = c.Name,
                                                    Value = c.Id.ToString(),
                                                   }
                                          );