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 8283087
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T10:36:40+00:00 2026-06-08T10:36:40+00:00

Is it possible to use two models in the same view (my view is

  • 0

Is it possible to use two models in the same view (my view is strongly-typed to a model of mine and i need to modify another model in the same view). Is there a way to do this

  • 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-08T10:36:42+00:00Added an answer on June 8, 2026 at 10:36 am

    Use a ViewModel which has properties to represent your other models and pass an object of that to the View.

    public class CustomerViewModel
    {
      public int ID { set;get;}
      public string Name { set;get;}
      public Address Address {set;get;}
      public IList<Order> Orders {set;get;}
    
      public CustomerViewModel()
      {
         if(Address==null)
             Address=new Address();
    
         if(Orders ==null)
             Orders =new List<Order>();
      }
    }
    
    public class Address 
    {
      public string AddressLine1 { set;get;} 
      //Other properties 
    }
    
    public class Order
    {
      public int OrderID{ set;get;} 
      public int ItemID { set;get;}
      //Other properties 
    }
    

    Now in your Action method

    public ActionResult GetCustomer(int id)
    {
       CustomerViewModel objVM=repositary.GetCustomerFromId(id);
       objVm.Address=repositary.GetCustomerAddress(id);
       objVm.Orders=repositary.GetOrdersForCustomer(id);
       return View(objVM);
    }
    

    Your View will be typed to CustomerViewModel

    @model CustomerViewModel
    @using(Html.BeginForm())
    {
      <h2>@Model.Name</h2>
      <p>@Model.Address.AddressLine1</p>
      @foreach(var order in Model.Orders)
      {
        <p>@order.OrderID.ToString()</p>
      }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My use case expects heavy read load - there are two possible model design
Is it possible to use two different databases for the same project in Ruby
I want to use two meta:resourcekey in single control is it possible? for example
Possible Duplicate: How to use include within a function? i have two file inc.php
Is it possible use mod_rewrite to resolve addresses hosted on another server? Say I
I need a control having these features: It should be possible use it in
To make my question more understandable, here's an example. There are two models: class
I know of at least two byte-code enhancer that modify the object model at
I have a requirement to use business objects to call strongly typed table adapters
I want to know if it is possible to use the same index file

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.