I have the following method in my controller:
public ActionResult OwnerList()
{
var owners = (from s in db.Owners
orderby s.Post.PostName
select s).ToList();
var viewModel = owners.Select(t => new OwnerListViewModel
{
Created = t.Created,
PostName = t.Post.PostName,
Dormant = t.Dormant,
OwnerId = t.OwnerId,
});
return PartialView("_OwnerList", viewModel);
}
When running this I get the following error from the owners variable:
{"Invalid object name 'dbo.Post'."}
My models are these
In the Owners database
public class Owner
{
public int OwnerId { get; set; }
[Column(TypeName = "int")]
public int PostId { get; set; }
[Column(TypeName = "bit")]
public bool Dormant { get; set; }
[Column(TypeName = "datetime2")]
public DateTime Created { get; set; }
public virtual ICollection<Asset> Assets { get; set; }
public virtual Post Post { get; set; }
}
In the People database
public class Post
{
public int PostId { get; set; }
[StringLength(50)]
[Column(TypeName = "nvarchar")]
public string PostName { get; set; }
[Column(TypeName = "bit")]
public bool Dormant { get; set; }
[StringLength(350)]
[Column(TypeName = "nvarchar")]
public string Description { get; set; }
public virtual ICollection<Contract> Contracts { get; set; }
public virtual ICollection<Owner> Owners { get; set; }
}
The view is:
@model IEnumerable<IAR.ViewModels.OwnerListViewModel>
<table class="table">
@foreach (var group in Model
.OrderBy(x => x.Dormant)
.GroupBy(x => x.Dormant))
{
<tr class="group-header">
@if (group.Key == true)
{
<th colspan="12"><h3>Dormant:- @group.Count()</h3></th>
}
else
{
<th colspan="12"><h3>Active:- @group.Count()</h3></th>
}
</tr>
<tr>
<th>
@Html.DisplayNameFor(model => model.PostName)
</th>
<th>
@Html.DisplayNameFor(model => model.Created)
</th>
<th></th>
</tr>
foreach (var item in group
)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.PostName) @Html.HiddenFor(modelItem => item.OwnerId)
</td>
<td>
@Html.DisplayFor(modelItem => item.Created)
</td>
<td>
@if (group.Key == true)
{
@Html.ActionLink("Make Active", "Dormant", new { ownerId = item.OwnerId })
}
else
{
@Html.ActionLink("Make Dormant", "Dormant", new { ownerId = item.OwnerId })
}
</td>
</tr>
}
}
</table>
I'm sure this is something simple but what am I not doing correctly to allow it to reference Post from Owner?