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
フィールドへのフィールドリンク
ビューで、私はのリストを表示する必要があります
Post.Title
Post.Contents
Author.Name
両方のモデルを(から)結合する情報を表示するにはどうすればよいですか?
注:ViewModel
を使用してビューをリストにバインドする必要があると思いIEnumerable
ますが、両方のモデルからデータを選択する方法がわかりません