编辑:这个问题现在已经解决了
我目前正在尝试使用 LINQ 从各种表中简单地选择多个列,我对此很陌生。基本上,我使用内部连接组合来自多个表的结果,以便将一些信息提供给我的模型,然后我将其传递给视图。该查询只返回第一个结果(这是一个正确的结果)并且返回它的次数比它出现的次数多,而从不显示任何其他结果。也就是说,它会多次重复第一个结果,而从不显示任何其他结果。
所以如果输出应该是这样的(这只是一个例子)
Name Task Name Status
Derp Do the Dishes ACTIVE
John Example Task COMPLETE
Jesus Walk on Water IMPOSSIBLE
相反,它会说
Name Task Name Status
Derp Do the Dishes ACTIVE
Derp Do the Dishes ACTIVE
Derp Do the Dishes ACTIVE
Derp Do the Dishes ACTIVE
Derp Do the Dishes ACTIVE
Derp Do the Dishes ACTIVE
Derp Do the Dishes ACTIVE
Derp Do the Dishes ACTIVE
Derp Do the Dishes ACTIVE
我认为我的 LINQ 语法有问题。
这是我的控制器的相关部分:
var TaskInstanceList = taskInstanceService.SelectAll();
var Person = personService.SelectAll();
var Task = taskService.SelectAll();
var Status = statusService.SelectAll();
var NewModel = new TaskLogModelContainer();
NewModel.Tasks = new List<TaskLogModel>();
var results = from ti in TaskInstanceList
join p in Person on ti.personID equals p.personID
join t in Task on ti.taskID equals t.taskID
join s in Status on ti.task_statusID equals s.statusID
select new { Person = p, Task = t, Status = s, Instance = ti };
foreach (var result in results)
{
var obj = new TaskLogModel();
obj.ID = result.Instance.person_taskID;
obj.FirstName = result.Person.FirstName;
obj.LastName = result.Person.LastName;
obj.Description = result.Task.Description;
obj.TaskName = result.Task.Name;
obj.Value = result.Task.Value;
obj.Status = result.Status.Status;
obj.Notes = result.Status.Notes;
NewModel.Tasks.Add(obj);
}
return View(NewModel);
这是我的看法
@model MyProj.Models.TaskLogModelContainer
@{
ViewBag.Title = "index";
}
<h2>@ViewBag.Title</h2>
<table>
<tr>
<th>
Name
</th>
<th>
Task Name
</th>
<th>
Status
</th>
</tr>
@foreach (var item in Model.Tasks)
{
<tr>
<td>@item.FirstName @item.LastName</td>
<td>@item.TaskName</td>
<td>@item.Status</td>
</tr>
}
</table>