c# - 从另一个数据库中的另一个模型引用一个模型 asp.net mvc

标签 c# asp.net-mvc

我的 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);
    }

运行此程序时,我从所有者变量中收到以下错误:

{"Invalid object name 'dbo.Post'."}

我的模型是这些

在所有者数据库中

        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; }
}

在人员数据库中

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; }
}

View 是:

@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>

我确信这很简单,但是我没有正确执行哪些操作以允许它引用所有者的帖子?

最佳答案

鉴于 s.Postnull,您已禁用 Entity Framework 的延迟加载。要么启用延迟加载,要么显式加载导航属性:

from s in db.Owners.Include(o => o.Post)
orderby s.Post.PostName
...

至于您的编辑,鉴于 Owner.Post 位于不同的数据库中,这是一个完全不同的问题。在网络上搜索,例如 Cross database querying in EFJoining tables from two databases using entity framework一些提示。要么在数据库级别链接它们(使用链接服务器或同义词和 View ),要么在代码中修复它们(循环 Owners 并查找他们的 Post) .

关于c# - 从另一个数据库中的另一个模型引用一个模型 asp.net mvc,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32821203/

相关文章:

c# - UWP NetworkConnectionChanged 事件

c# - 如何在ASP.net Core中添加js和css文件?

asp.net-mvc - Visual Studio 中的单元测试 MVC Web 应用程序和 QTAgent 问题

c# - 我应该如何将此源更改为 LINQ?

c# - Enterprise Library 日志记录 block 的编程配置

c# - 如何正确使用 SPServiceApplication 集合?

c# - LDIF 解析器 (C#)

asp.net-mvc - ASP.Net MVC 2.0 Html.HiddenFor HtmlHelper 扩展不返回值

c# - 无法定义使用 'dynamic' 的类或成员,因为编译器需要类型 'System.Runtime.CompilerServices.DynamicAttribute'

c# - 如何从 ViewModel 映射到 Model