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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T02:37:30+00:00 2026-05-18T02:37:30+00:00

Similar to this question: C# Constructor Design but this question is slight different. I

  • 0

Similar to this question:
C# Constructor Design but this question is slight different.

I have a class Customer and a class CustomerManager. When an instance is created of the CustomerManager class I want to load all the customers. And this is where I got stuck. I can do this several ways:

  1. Load all the customers in the constructor (I don’t like this one because it can take a while if I have many customers)
  2. In every method of the CustomerManager class that performs database related actions, check the local list of customers is loaded and if not, load the list:

    public method FindCustomer(int id)
    {
      if(_customers == null)
      // some code which will load the customers list
    }
    
  3. Create a method which loads all the customers. This method must be called before calling methods which performs database related actions:

    In the class:

    public LoadData()
    {
       // some code which will load the customers list
    }
    

    In the form:

    CustomerManager manager = new CustomerManager();
    manager.LoadData(); 
    Customer customer = manager.FindCustomer(int id);
    

What is the best way to do this?

EDIT:

I have the feeling that I am misunderstood here. Maybe it is because I wasn’t clear enough. In the CustomerManager class I have several methods which depends on the local list (_customers). So, my question is, where should I fill that list?

  • 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-18T02:37:30+00:00Added an answer on May 18, 2026 at 2:37 am

    What you are describing is “lazy loading”.

    A simple approach is to have a private property like this:

    private Lixt<Customer> _customers;
    private List<Customer> Customers
    {
      get
      {
        if(_customers == null)
          _customers = LoadData();
        return _customers;
      }
    }
    

    Then, you refer to Customers internally. The customers will be loaded the first time they are needed but no earlier.

    This is such a common pattern that .Net 4.0 added a Lazy<T> class that does this for you.

    I that case, you just define it as a private like this:

    private Lazy<List<Customer>> _customers = new Lazy<List<Customer>>(LoadData);
    

    Then, you simply refer to your customers in code:

    _customers.Value
    

    The class will initialize the value with your LoadData() method.

    If you are not on .Net 4.0 yet, the Lazy<T> class is very easy to implement.

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

Sidebar

Related Questions

No related questions found

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.