gpt4 book ai didi

asp.net - MVC,Entity Framework 从多个模型中选择数据

转载 作者:行者123 更新时间:2023-12-04 18:18:27 24 4
gpt4 key购买 nike

在 ASP.NET MVC3 Razor 项目中,我有 2 个模型

public class Post
{
public int Id { get; set; }
public string Title { get; set; }
public string Contents { get; set; }
public int Author { get; set; }
}

public class Author
{
public int Id { get; set; }
public string Name { get; set; }
public string Email { get; set; }
}
Post.Author指向 Author.Id 的字段链接 field

在一个 View 中,我需要显示列表
Post.Title
Post.Contents
Author.Name

如何显示加入(来自)两个模型的信息?

注:我想我需要使用 ViewModel并将 View 与 IEnumerable 绑定(bind)列表,但我不知道如何从两个模型中选择数据

最佳答案

您可以创建一个 View 模型,该模型仅具有您希望在 View 上显示的属性

public class PostViewModel
{
public int Id { get; set; }
public string Title { get; set; }
public string Contents { get; set; }
public string AuthorName { get; set; }

}

您在 Controller 操作中使用您的数据填充此 View 模型,并进行必要的连接
public ActionResult GetAuthorInfor()
{
var query = //context.Post join with context.Author
Select new PostViewModel()
{
Id = post.id,
Title = post.title,
Contents = post.contents,
AuthorName = author.authorname
}
return view(query.Single());
}

并创建一个类型化的 View 来渲染这个模型。

关于asp.net - MVC,Entity Framework 从多个模型中选择数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11241341/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com