我想使用razor模板创建一个视图,但我不想为模型编写一个类,因为在很多视图中我会有很多查询会返回不同的模型。
例如我有一个linq查询:
from p in db.Articles.Where(p => p.user_id == 2)
select new
{
p.article_id,
p.title,
p.date,
p.category,
/* Additional parameters which arent in Article model */
};
我需要为此查询编写一个View。此查询返回文章。
现在我不知道应该如何看待模型定义。
我尝试使用这种解释:
@model System.Collections.IEnumerable
但后来我有一个错误而不是文件在对象类型中不存在:
* CS1061:'object'不包含'addition_field'的定义,并且没有扩展方法'addition_field'可以找到'object'类型的第一个参数*
这是我的模型,我不想写下一个模型。当然
答案 0 :(得分:42)
简短的回答是using anonymous types is not supported,但there is a workaround,您可以使用ExpandoObject
将模型设置为
@model IEnumerable<dynamic>
然后在控制器中
from p in db.Articles.Where(p => p.user_id == 2)
select new
{
p.article_id,
p.title,
p.date,
p.category,
/* Additional parameters which arent in Article model */
}.ToExpando();
...
public static class Extensions
{
public static ExpandoObject ToExpando(this object anonymousObject)
{
IDictionary<string, object> anonymousDictionary = HtmlHelper.AnonymousObjectToHtmlAttributes(anonymousObject);
IDictionary<string, object> expando = new ExpandoObject();
foreach (var item in anonymousDictionary)
expando.Add(item);
return (ExpandoObject)expando;
}
}
答案 1 :(得分:1)
我认为这是一个更好的解决方案:
http://buildstarted.com/2010/11/09/razor-without-mvc-part-iii-support-for-nested-anonymous-types/
这允许嵌套的匿名类型,前面提到的扩展对象解决方案将无法处理。
答案 2 :(得分:1)
您似乎无法传递匿名类型,但如果您只想要该类型的值,则可以传递一个可枚举的对象数组进行查看。
查看:
@model IEnumerable<object[]>
@{
ViewBag.Title = "Home Page";
}
<div>
<table>
@foreach (var item in Model)
{
<tr>
<td>@item[0].ToString()</td>
<td>@item[1].ToString()</td>
</tr>
}
</table>
</div>
控制器:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web.Mvc;
namespace ZZZZZ
{
public class HomeController : Controller
{
public ActionResult Index()
{
List<object[]> list = new List<object[]> { new object[] { "test1", DateTime.Now, -12.3 } };
return View(list);
}
}
}
答案 3 :(得分:1)
如果您使用的是C#7.0+(在Visual Studio 2017+中引入),最简单的解决方案是使用元组而不是匿名类型。
剃刀视图:“ _ MyTupledView.cshtml”
@model (int Id, string Message)
<p>Id: @Model.Id</p>
<p>Id: @Model.Message</p>
然后,当您绑定此视图时,您只需发送一个元组:
var id = 123;
var message = "Tuples are great!";
return View("_MyTupledView", (id, message))