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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T06:48:15+00:00 2026-05-14T06:48:15+00:00

My program has the following class definition: public sealed class Subscriber { private subscription;

  • 0

My program has the following class definition:

public sealed class Subscriber
{
    private subscription;
    public Subscriber(int id)
    {
        using (DataContext dc = new DataContext())
        {
           this.subscription = dc._GetSubscription(id).SingleOrDefault();                
        }            
    }
}

,where

_GetSubscription() is a sproc which returns a value of type ISingleResult<_GetSubscriptionResult>

Say, I have a list of type List<int> full of 1000 ids and I want to create a collection of subscribers of type List<Subscriber>.

How can I do that without calling the constructor in a loop for 1000 times?

Since I am trying to avoid switching the DataContext on/off so frequently that may stress the database.

TIA.

  • 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-14T06:48:15+00:00Added an answer on May 14, 2026 at 6:48 am

    Write a static factory method which calls a private constructor.

    public sealed class Subscriber
    {
        // other constructors ...
    
        // this constructor is not visible from outside.
        private Subscriber(DataContext dc, int id)
        {
           // this line should probably be in another method for reusability.
           this.subscription = dc._GetSubscription(id).SingleOrDefault();                
        }
    
        public List<Subscriber> CreateSubscribers(IEnumerable<int> ids)
        {
            using (DataContext dc = new DataContext())
            {
    
               return ids
                 .Select(x => new Subscriber(dc, x))
                 // create a list to force execution of above constructor
                 // while in the using block.
                 .ToList();
            }            
    
        }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My program has the following lines, works fine when run from Netbeans, JButton Button_1=new
I have a C++ program that has the following form: int main(){ int answer;
Here is part of a class definition in an iOS program using reference counting
Write a class ListNode which has the following properties: int value; ListNode *next; Provide
Consider the following general program structure: Class A has an instance of Class B
I am making a program with native C++ and the WinAPI. This program has
I have a Python project that has the following structure: package1 class.py class2.py ...
One of my fellow developer has a code similar to the following snippet class
The following program has no importance of its own. It just counts the number
I see some program, in its jsp code, it has following : And it

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.