.net MVC从控制器传递linq数据来查看

我试图从控制器传递数据来查看。 我搜索了网页,但找不到解决方案。

如果我这样做它的作品:

控制器:

var yyy = (from a in Connection.Db.Authorities select a) ;
ViewBag.data = yyy;

视图:

@foreach(var item in ViewBag.data)
{
    @item.Value
}

但是下面的代码不起作用:

控制器:

var yyy = (from a in Connection.Db.Authorities select new {Value = a.Value, TypeCode = a.TypeCode, Return = Calculate(a.Return)}) ;
ViewBag.data = yyy;

视图:

@foreach(var item in ViewBag.data)
{
    @item.Value
}

它为视图文件提供“项目不包含Value的定义”。

任何帮助都会很棒。

谢谢。

-edited:更新第二个控制器linq查询。 并纠正了第一个控制器linq查询。


这是因为你已经选择ValueValue没有这样的财产Value 。 你应该改变控制器:

var yyy = (from a in Connection.Db.Authorities select a.Value);

var yyy = (from a in Connection.Db.Authorities select a);

或者将视图更改为

@foreach(var item in ViewBag.data)
{
    @item
}

//////////////////////////////////////////////// EDITS / ///////////////////////////////////////////////
比你不应该使用匿名对象。 你应该创建ViewModelClass 。 例如:

public class AuthoritiesViewModel
        {
            public string Value { get; set; }
            public string TypeCode { get; set; }
            public string Return { get; set; }
        }

并改变你的控制器:

var yyy = (from a in Connection.Db.Authorities select new AuthoritiesViewModel{ Value = a.Value, TypeCode = a.TypeCode, Return = Calculate(a.Return)});
ViewBag.data = yyy;

在您看来,您将能够使用:

<table>
    <tr>
         <th>Value</th>
         <th>TypeCode</th>
         <th>Return</th>
    </tr>
@foreach(AuthoritiesViewModel item in ViewBag.data)
{
    <tr>
         <td>@item.Value<td>
         <td>@item.TypeCode<td>
         <td>@item.Return<td>
    </tr>
}
</table>

另外,我有一个问题给你。 为什么使用ViewBag将数据从控制器传递到视图? 为什么不使用Model来传递这些数据以根据MVC模式进行查看?

//////////////////////////////////////////////// MORE EDITS ////////////////////////////////////////////////
发送多个查询结果您可以创建更复杂的模型。 例如:

public class AuthoritiesViewModel
        {
            public string Value { get; set; }
            public string TypeCode { get; set; }
            public string Return { get; set; }
        }

        public class AnotherQueryViewModel
        {
            public string AnotherQueryValue { get; set; }
            public string AnotherQueryTypeCode { get; set; }
            public string AnotherQueryReturn { get; set; }
        }

        public class ModelClass
        {
            IEnumerable<AuthoritiesViewModel> Authorities { get; set; }
            IEnumerable<AnotherQueryViewModel> AnotherQueryResults { get; set; }
        }

并更换控制器:

var yyy = (from a in Connection.Db.Authorities select new AuthoritiesViewModel{ Value = a.Value, TypeCode = a.TypeCode, Return = Calculate(a.Return)});

// do your another select
var zzz = (from smthing select new AnotherQueryViewModel ...)

// create model instance
ModelClass model = new ModelClass() 
{
    Authorities = yyy.AsEnumerable(),
    AnotherQueryResults = zzz..AsEnumerable()
}

// return view with model
return View("view", model);

并鉴于您可以使用:

@model ModelClass

@*display first query result*@
<table>
    <tr>
         <th>Value</th>
         <th>TypeCode</th>
         <th>Return</th>
    </tr>
@foreach(AuthoritiesViewModel item in Model.Authorities)
{
    <tr>
         <td>@item.Value<td>
         <td>@item.TypeCode<td>
         <td>@item.Return<td>
    </tr>
}
</table>

@*display second query result*@
<table>
    <tr>
         <th>Another Query Value</th>
         <th>Another Query TypeCode</th>
         <th>Another Query Return</th>
    </tr>
@foreach(AnotherQueryViewModel item in Model.AnotherQueryResults)
{
    <tr>
         <td>@item.AnotherQueryValue<td>
         <td>@item.AnotherQueryTypeCode<td>
         <td>@item.AnotherQueryReturn<td>
    </tr>
}
</table>

像这样使用某物

ViewBag.qualification = new SelectList(db.Lookups.Where(x => x.lookup_type ==“Qualification”),“lookup_content”,“lookup_content”);

链接地址: http://www.djcxy.com/p/71725.html

上一篇: .net MVC passing linq data from controller to view

下一篇: How to use `local` and a `Reader` monad with Scrap Your Boilerplate (SYB)?