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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T13:06:25+00:00 2026-05-19T13:06:25+00:00

I need to convert a List of enums values to a single string to

  • 0

I need to convert a List of enums values to a single string to store in my db; then convert back again when I retrieve from the database.

Each enum’s value is currently a simple integer, so it feels a bit overkill to create an extra table to deal with this.

So, in the example below, if the user selects Mother, Father and Sister, then the value stored in the database will be “0,1,3”

  public enum MyEnum
    {
        Mother = 0,
        Father = 1,
        Gran = 2,
        Sister = 3,
        Brother = 4
    }

I’m new to c#, so not sure if there is a nice out-the-box way to do this – I couldn’t find anything obvious when google hunting!

Cheers in advance 🙂
– L

  • 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-19T13:06:26+00:00Added an answer on May 19, 2026 at 1:06 pm

    The following will convert back and forth between an array of Enum values via “0,1,3” as requested:

    MyEnum[] selection = { MyEnum.Mother, MyEnum.Father, MyEnum.Sister };
    
    string str = string.Join(",", selection.Cast<int>());
    
    MyEnum[] enm = str.Split(',').Select(s => int.Parse(s)).Cast<MyEnum>().ToArray();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to convert a String representation of a nested List back to a
I need to convert from a SQLVARCHAR to a string data type Variable definitions
I need to return a list of objects from a restful webservice. each object
Consider the sample code below, i need to convert the list nvlist back to
I need an easy way to convert a List<int> to a string array. I
I need to convert a bunch of dates in a MySQL database from Pacific
I need to convert this type of List to List of string: var fileName
I need to convert from an integer to a list of size 8 that
I need to convert a string of comma separated integers into a list of
I need to convert an ASCII string into a list of bits and vice

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.