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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T21:00:18+00:00 2026-05-11T21:00:18+00:00

I have a view that will look like this: I’m trying to figure out

  • 0

I have a view that will look like this:

alt text

I’m trying to figure out how I should represent my ViewModel for this view. Each “Agency” can have multiple “Business Units” and each “Business Unit” can have several “Clients”.

In the database I easily represent this with a mapping table and foreign keys for the Agency, BusinessUnit and Client tables.

However, now I need to use LINQ to query this data out of the database and then construct a ViewModel object that represents this tree-like structure so my View can render it.

Can anyone give me tips on what data-structure I should use, or what my ViewModel might look like for this hierarchical structure in C# code? I need to create my ViewModel object to pass on to this view.

Any suggestions on how to represent the ViewModel are appreciated!

  • 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-05-11T21:00:18+00:00Added an answer on May 11, 2026 at 9:00 pm

    Just store a List instance in your view data?

    public class Agency
    {
       public List<BusinessUnit> Units;
       public string Name;
       public int NumberOfAccounts
       {
          get 
          {
             int ret = 0;
             foreach(BusinessUnit unit in units)
                ret += unit.NumberOfAccounts;
             return ret;
          }
       }
       // ... continue this strategy for other properties
    }
    public class BusinessUnit
    {
       public List<Client> clients;
       public string Name;
       public int NumberOfAccounts
       {
          get 
          {
             int ret = 0;
             foreach(Client client in clients)
                ret += client.NumberOfAccounts;
             return ret;
          }
       }
       // ... continue this strategy for other properties
    
    }
    public class Client
    {
       public string Name;
       public int NumberOfAccounts;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a view that will be displaying downloaded images and text. I'd like
I have a View that is basically setup like this: <Grid> <ViewBox> <Grid> <ItemsControl
I want to output a menu structure that will look like this <ul> <li>
I created a view that will look like a splash screen and which will
Hi, For a view that will be submited I have two actions with the
We have a view that, without constraints, will return 90 million rows and a
I have made a view in the application that shows a UITableView. It will
I have an action method that looks like this: public ActionResult Index(string message) {
I have a site that I'm building out with php that will allow for
I have a tree view that contains 3 roots and each root contains 3

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.