Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8175557
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T22:49:41+00:00 2026-06-06T22:49:41+00:00

In a ASP.NET MVC3 Razor project I have 2 Models public class Post {

  • 0

In a ASP.NET MVC3 Razor project I have 2 Models

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 field links to Author.Id field

In a view, I need to display list of

Post.Title
Post.Contents
Author.Name

How to display the information joining (from) both models?

Note : I guess I need to use a ViewModel and bind the view with IEnumerable List, but I have no idea how to select the data from both models

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T22:49:42+00:00Added an answer on June 6, 2026 at 10:49 pm

    You can create a viewmodel which will have ONLY properties which u want to be displayed on view

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

    You populate this viewmodel with your data in your controller action taking necessary joins

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

    and create a typed view to render this model.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string created using asp.net MVC3 Razor block like this: @{ var
I am working on a project which adopted ASP.NET MVC3(Razor) tech. Now, I have
In my asp.net mvc3 (razor) project I have a grid very similar to the
I have something like this in Site.Master in an asp.net mvc3 (not razor) project:
In ASP.NET MVC3 I'm trying to set the css class that the validation error
In an ASP.NET MVC3 project I have a structure like this: Core.csproj -> 3rdparty1.dll
I had created a webpage using asp.net mvc3 razor. I have two master pages
With ASP.NET MVC3 (Razor) I have a simple page that loads a jQuery UI
I have a telerik grid in an asp.net mvc3 (RAZOR) View. While designing I
I have a new ASP.NET MVC 3 project, and MVC and Razor are all

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.