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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T00:09:52+00:00 2026-05-15T00:09:52+00:00

I have a class that stores data in asp.net c# application that never changes.

  • 0

I have a class that stores data in asp.net c# application that never changes. I really don’t want to put this data in the database – I would like it to stay in the application. Here is my way to store data in the application:

public class PostVoteTypeFunctions
{
    private List<PostVoteType> postVotes = new List<PostVoteType>();
    public PostVoteTypeFunctions()
    {
        PostVoteType upvote = new PostVoteType();
        upvote.ID = 0;
        upvote.Name = "UpVote";
        upvote.PointValue = PostVotePointValue.UpVote;
        postVotes.Add(upvote);

        PostVoteType downvote = new PostVoteType();
        downvote.ID = 1;
        downvote.Name = "DownVote";
        downvote.PointValue = PostVotePointValue.DownVote;
        postVotes.Add(downvote);

        PostVoteType selectanswer = new PostVoteType();
        selectanswer.ID = 2;
        selectanswer.Name = "SelectAnswer";
        selectanswer.PointValue = PostVotePointValue.SelectAnswer;
        postVotes.Add(selectanswer);

        PostVoteType favorite = new PostVoteType();
        favorite.ID = 3;
        favorite.Name = "Favorite";
        favorite.PointValue = PostVotePointValue.Favorite;
        postVotes.Add(favorite);

        PostVoteType offensive = new PostVoteType();
        offensive.ID = 4;
        offensive.Name = "Offensive";
        offensive.PointValue = PostVotePointValue.Offensive;
        postVotes.Add(offensive);

        PostVoteType spam = new PostVoteType();
        spam.ID = 0;
        spam.Name = "Spam";
        spam.PointValue = PostVotePointValue.Spam;
        postVotes.Add(spam);
    }
}

When the constructor is called the code above is ran. I have some functions that can query the data above too. But is this the best way to store information in asp.net? if not what would you recommend?

  • 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-15T00:09:52+00:00Added an answer on May 15, 2026 at 12:09 am

    This is a candidate for an immutable struct that “looks like” an enumeration:
    (Also, I noticed you used the same id value for two of them, so I fixed that…
    You can use the following just as you would an enumeration…

    PostVoteTypeFunctions myVar = PostVoteTypeFunctions.UpVote;
    

    and real nice thing is that this approach requires no instance storage other than a 4-byte integer (which will be stored on stack, since it’s a struct). All hard-coded values are stored in the type itself… of which only one will exist per AppDomain…

    public struct PostVoteTypeFunctions 
    { 
        private int id;
        private bool isDef;
        private PostVoteTypeFunctions ( )  { } // private to prevent direct instantiation
        private PostVoteTypeFunctions(int value) { id=value; isDef = true; }
    
        public bool HasValue { get { return isDef; } }
        public bool isNull{ get { return !isDef; } }
        public string Name 
        { 
           get 
           {  return 
                 id==1? "UpVote":
                 id==2? "DownVote":
                 id==3? "SelectAnswer":
                 id==4? "Favorite":
                 id==5? "Offensive":
                 id==6? "Spam": "UnSpecified";
           }
        }
        public int PointValue 
        { 
           get 
           {  return // Why not hard code these values here as well  ?
                 id==1? PostVotePointValue.UpVote:
                 id==2? PostVotePointValue.DownVote
                 id==3? PostVotePointValue.SelectAnswer:
                 id==4? PostVotePointValue.Favorite:
                 id==5? PostVotePointValue.Offensive:
                 id==6? PostVotePointValue.Spam: 
                        0;
           }
        }
        // Here Add additional property values as property getters 
        // with appropriate hardcoded return values using above pattern
    
        // following region is the static factories that create your instances,
        //  .. in a way such that using them appears like using an enumeration
        public static PostVoteTypeFunctions UpVote = new PostVoteTypeFunctions(1);
        public static PostVoteTypeFunctions DownVote= new PostVoteTypeFunctions(2);
        public static PostVoteTypeFunctions SelectAnswer= new PostVoteTypeFunctions(3);
        public static PostVoteTypeFunctions Favorite= new PostVoteTypeFunctions(4);
        public static PostVoteTypeFunctions Offensive= new PostVoteTypeFunctions(5);
        public static PostVoteTypeFunctions Spam= new PostVoteTypeFunctions(0);       
    } 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 515k
  • Answers 515k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer seems to me like a bug or at least some… May 16, 2026 at 6:34 pm
  • Editorial Team
    Editorial Team added an answer To label the objects, add a toString function, like this:… May 16, 2026 at 6:34 pm
  • Editorial Team
    Editorial Team added an answer Why not read the file directly from the filesystem instead… May 16, 2026 at 6:34 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

I'm working on an asp.net MVC application. I have a class that wraps a
I have a dynamic data ASP.NET application with a requirement to give some users
I have an ASP.NET MVC application where I need to allow to customers configure
I have an ASP.NET application with a lot of dynamic content. The content is
I've developing an ASP.NET application that interfaces with Google Maps and retrieves marker information
I have to port a smaller windows forms application (product configurator) to an asp.net
I have a simple two-field form that stores its data in the database. For
We are running a .Net 1.1 based Windows Service ( not an ASP.Net application),
I have this situation: web application with cca 200 concurent requests (Threads) are in
I have a Java web application that has a 'disconnected' Java Swing desktop app.

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.