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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T06:33:06+00:00 2026-06-12T06:33:06+00:00

Hello everyone how to pass two or more than IEnumerables lists to view? Here

  • 0

Hello everyone how to pass two or more than IEnumerables lists to view? Here is my action controller:

 ServicesClient client = new ServicesClient();
 client.ClientCredentials.UserName.UserName = "service_test";
 client.ClientCredentials.UserName.Password = "..";
            client.ClientCredentials.ServiceCertificate.Authentication.CertificateValidationMode = System.ServiceModel.Security.X509CertificateValidationMode.None;

            ListCity[] city = client.GetCity();
            ListStreet[] street = client.GetStreet(2);

            return View(city);

And my View:

model IEnumerable<ListCity>

@using icerik.EmlakServices 
@{

    Layout = "~/Views/Shared/Test.cshtml";
}


<select>

@foreach(var item in Model)
{

    <option>@Html.DisplayFor(x => item.CityName)</option>
}
</select>
  • 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-12T06:33:07+00:00Added an answer on June 12, 2026 at 6:33 am

    You have to create a ViewModel in this case. So something like this:

    public class MyViewModel{
      public ListCity[] City {get;set;}
      public ListStreet[] Street {get;set;}
    }
    

    Then in your controller:

    var viewmodel = new MyViewModel{
                      City = client.GetCity(),
                      Street = client.GetStreet(2)
                    };
    return View(viewModel);
    

    Then in your view:

    model MyViewModel
    

    Then you can get the collections in your view like Model.City, or Model.Street.

    For all but the very basic cases, you usually end up creating a ViewModel for almost all your views. So name them properly so you know what they are doing. I called it MyViewModel in the example since I don’t know the context.

    Also, I would name the variables Cities and Streets since they are collections, and not just single elements.

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

Sidebar

Related Questions

hello everyone i struggling to pass two parameter to an event handler basically when
hello everyone i am new bie in iphone development i want to connect to
Hello everyone it is me again with another question. The booking system located here
Hello everyone I am new to the forum and I just had a question
Hello everyone how can I get two values from different select boxes? I get
Hello everyone I have used [Authorize] but when redirect to login view I can
Hello everyone I have two login but how can I assign these login URLs
Hello everyone I would like to ask how to redirect from one view to
Hello everyone I have error which breaks up my build for no reason, here
Hello Everyone i am a new to openCV for iPhone and i want to

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.