我有两个模型,我需要在布局页面和用户访问的每个页面中显示数据。这两个模型之间没有任何关系,所以我不需要任何加入。
这是我的控制器
public ActionResult Index()
{
var notification = (from n in db.Notification
where n.NotificationIsSeen == true
select n);
var task = (from t in db.Task
where t.TaskIsSeen == true
select t);
return View();// I not sure how to return both of queries
}
我还创建了一个包含它们的模型,但我不确定这是否正确
public class Layout
{
public Notification Notification { get; set; }
public Task Task { get; set; }
}
并在我的布局页面中
@model IEnumerable<MyprojectName.Models.Layout>
//other code
@foreach (var item in Model)
{
<li>@Html.DisplayFor(modelItem => item.Notification.NotificationSubject ) </li>}
//other code
@foreach (var item in Model)
{
<li>@Html.DisplayFor(modelItem => item.Task.TaskSubject )
</li>
}
我见过其他类似问题,但他们使用连接表。 我需要一些关于返回两个表的数据的帮助。提前谢谢你
答案 0 :(得分:3)
您的操作方法中的查询都返回数据集合。为了适应这种情况,您的视图模型需要有两个列表,需要看起来像这样。将这些集合发送到视图时,您必须能够将这些集合存储在列表中:
public class Layout
{
public IEnumerable<Notification> Notifications { get; set; }
public IEnumerable<Task> Tasks { get; set; }
}
要填充这些列表,请将操作方法中的代码更改为此。创建Layout
的实例,填充两个列表,然后将实例发送到视图:
public ActionResult Index()
{
Layout model = new Layout();
model.Notifications = (from n in db.Notification
where n.NotificationIsSeen == true
select n);
model.Tasks = (from t in db.Task
where t.TaskIsSeen == true
select t);
return View(model);
}
您的观点需要接受Layout
的实例:
@model MyprojectName.Models.Layout
@foreach (var notification in Model.Notifications)
{
<div>
@notification.NotificationSubject
</div>
}
@foreach (var task in Model.Tasks)
{
<div>
@task.TaskSubject
</div>
}
我希望这会有所帮助。
答案 1 :(得分:-1)
请在布局模型中声明模型的列表类型
布局模型
public class Layout
{
public IEnumerable<Notification> Notifications { get; set; }
public IEnumerable<Task> Tasks { get; set; }
}
控制器
public ActionResult Index()
{
Layout model = new Layout();
model.Notifications = (from n in db.Notification
where n.NotificationIsSeen == true
select n);
model.Tasks = (from t in db.Task
where t.TaskIsSeen == true
select t);
return View(model);
}
查看
@model MyprojectName.Models.Layout
@foreach(var item in Model.Notifications)
{
// access your item.propertyname
}
@foreach(var item in Model.Task)
{
// access your item.propertyname
}
答案 2 :(得分:-1)
使用局部视图构建动态标题
1 - 使用局部视图和显示数据创建操作
2 - 转到布局来调用此
@Html.partial("Action","Controller")