从控制器传递属性看不起作用?还是我错了财产?

时间:2013-07-02 09:07:35

标签: asp.net-mvc asp.net-mvc-4 view controller

我正在尝试传递一些属性来查看但我在视图中出错了。 这是模型

public class ModuleDetails {
    public long Id { get; set; }
    public string ModuleId { get; set; }
    public string TypeName { get; set; }
    public string KindName { get; set; }
    public IEnumerable<Property> Properties { get; set; }
}

public class Property {
    public string Name { get; set; }
    public string Value { get; set; }
}

这就是我在控制器中所做的:

public ActionResult Details(long id) {
    var ownerId = _dbSis.OwnedModules.Find(id);
    var ownerName = _dbSis.Set<BusinessUnit>().Find(ownerId.ModuleOwnerId);

    var module = (_dbSis.Modules.Select(m => new ModuleDetails {
        Id = id,
        ModuleId = m.ModuleId,
        TypeName = m.ModuleType.TypeName,
        KindName = m.ModuleType.ModuleKind.KindName,
        Properties = m.PropertyConfiguration.PropertyInstances.Select(
        x => new Property {Name = x.Property.Name, Value = x.Value})
    }));

    return View(module.FirstOrDefault());//am i doing something wrong here?
}

查看

@using BootstrapSupport
@model AdminPortal.Areas.Hardware.Models.ModuleDetails
@{
    ViewBag.Title = "Details";
    Layout = "~/Views/shared/_BootstrapLayout.basic.cshtml";
}

<fieldset>
    <legend>Module <small>Details</small></legend>
    <dl class="dl-horizontal"> <!-- use this class on the dl if you want horizontal styling http://twitter.github.com/bootstrap/base-css.html#typography  class="dl-horizontal"-->     

        <dt>ID</dt>
        <dd>@Model.Id</dd>

        <dt>Module ID</dt>
        <dd>@Model.ModuleId</dd>

        <dt>Module Type</dt>
        <dd>@Model.TypeName</dd>

        <dt>Module Kind</dt>
        <dd>@Model.KindName</dd>
        @foreach (var properties in Model.Properties)
        {
            <dt>Property Names</dt>
            <dd>@properties.Name</dd>
            <dt>Property Value</dt>
            <dd>@properties.Value\</dd>
        }       
    </dl>
</fieldset>
<p>
    @Html.ActionLink("Edit", "Edit", Model.GetIdValue()) |
    @Html.ActionLink("Back to List", "ModuleList")
</p>

现在当我运行程序并设置我的控制器的断点时,我得到了这个 enter image description here

我可以看到属性中有一些名称和值。 但是在视图中我总是得到第一项的细节,无论我选择哪一项,但ID是我选择的Id。 是因为我在做什么

return View(module.FirstOrDefault());

如何将正确的项目及其属性传递给View?

3 个答案:

答案 0 :(得分:1)

如果您想要显示具有Id = some id的正确项目,则需要按Id选择记录。在你的代码中,在你的linq select语句中添加一个where子句,它可能是......

  var module = (SbSis.Modules.Where(t => t.ID == id).Select( ....

答案 1 :(得分:0)

如果您想根据id返回元素,可以使用以下内容进行过滤:module.FirstOrDefault(x=> x.Id == id)

答案 2 :(得分:0)

.FirstOrDefault()方法的结果可能是默认的。它意味着您获得了多个对象,但您的视图具有对象模型,而不是IEnumerable。请将您的代码替换为以下测试 从

return View(module.FirstOrDefault());

return View(module.First());

如果在此之后你不会收到错误,那就意味着我是真的。