vote up 4 vote down star
7

How do I create a dynamic enum (and subsequently use the enum choices) in C# based on values in a database lookup table? (using enterprise library data layer) e.g. If I add a new lookup value in the database, I don't want to have to add the extra static enum value declaration in code.

Is there such a thing as this? I don't want to create a code generated static enum (as per code project article), would prefer completely dynamic.

flag
Would it be possible that you are trying to use an enumeration in a way where there is a better solution? – Dan Oct 12 at 17:30

10 Answers

vote up 0 vote down

using dynamic enums is bad no matter which way. You will have to go through the trouble of "duplicating" the data to ensure clear and easy code easy to maintain in the future.

If you start intriducing automatic generated libraries you are for sure causing more confusion to future developers having to upgrade your code then simply making your enum coded within the appropriate class object.

The other exmples given sound nice and exciting but think about the overhead on code maintenance versus what you get from it..also....are those values going to change that frequently ?

link|flag
vote up 0 vote down

I don't think there is a good way of doing what you want. And if you think about it I don't think this is what you really want.

If you would have a dynamic enum, it also means you have to feed it with a dynamic value when you reference it. Maybe with a lot of magic you could achieve some sort of intellisense that would take care of this and generate an enum for you in a dll. But consider the amount of work it would take, how uneffective it would be to access the database to fetch intellisense information as well as the nightmare of version controlling the generated dll.

If you really don't want to manually add the enum values (you'll have to add them to the database anyway) use a code generation tool instead , for example t4 templates. Right click+run and you got your enum statically defined in code and you get all the benefits of using enums.

link|flag
vote up 1 vote down

You could use CodeSmith to generate something like this:

http://www.csharping.com/PermaLink,guid,cef1b637-7d37-4691-8e49-138cbf1d51e9.aspx

link|flag
vote up 0 vote down

Just showing the answer of Pandincus with "of the shelf" code and some explanation: You need two solutions for this example ( I know it could be done via one also ; ), let the advanced students present it ... So here is the DDL SQL for the table :

USE [ocms_dev]
    GO

CREATE TABLE [dbo].[Role](
    [RoleId] [int] IDENTITY(1,1) NOT NULL,
    [RoleName] [varchar](50) NULL
) ON [PRIMARY]

So here is the console program producing the dll:

using System;
using System.Collections.Generic;
using System.Text;
using System.Reflection;
using System.Reflection.Emit;
using System.Data.Common;
using System.Data;
using System.Data.SqlClient;

namespace DynamicEnums
{
  class EnumCreator
  {
    //after running for first time rename this method to Main1
    static void Main ()
    {
      string strAssemblyName = "MyEnums";
      bool flagFileExists = System.IO.File.Exists
        ( AppDomain.CurrentDomain.SetupInformation.ApplicationBase + strAssemblyName + ".dll" );

      // Get the current application domain for the current thread
      AppDomain currentDomain = AppDomain.CurrentDomain;

      // Create a dynamic assembly in the current application domain,
      // and allow it to be executed and saved to disk.
      AssemblyName name = new AssemblyName ( strAssemblyName );
      AssemblyBuilder assemblyBuilder = currentDomain.DefineDynamicAssembly ( name,
                                            AssemblyBuilderAccess.RunAndSave );

      // Define a dynamic module in "MyEnums" assembly.
      // For a single-module assembly, the module has the same name as the assembly.
      ModuleBuilder moduleBuilder = assemblyBuilder.DefineDynamicModule ( name.Name,
                                        name.Name + ".dll" );

      // Define a public enumeration with the name "MyEnum" and an underlying type of Integer.
      EnumBuilder myEnum = moduleBuilder.DefineEnum ( "EnumeratedTypes.MyEnum",
                               TypeAttributes.Public, typeof ( int ) );

      #region GetTheDataFromTheDatabase
      DataTable tableData = new DataTable ( "enumSourceDataTable" );

      string connectionString = "Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=ocms_dev;Data Source=ysg";

      using (SqlConnection connection = new SqlConnection ( connectionString ))
      {

        SqlCommand command = connection.CreateCommand ();

        command.CommandText = string.Format ( "SELECT [RoleId],[RoleName] FROM [ocms_dev].[dbo].[Role]" );
        Console.WriteLine ( "command.CommandText is " + command.CommandText );
        connection.Open ();
        tableData.Load ( command.ExecuteReader ( CommandBehavior.CloseConnection ) );
      } //eof using

      foreach (DataRow dr in tableData.Rows)
      {
        myEnum.DefineLiteral ( dr[1].ToString (), Convert.ToInt32 ( dr[0].ToString () ) );
      }
      #endregion GetTheDataFromTheDatabase

      // Create the enum
      myEnum.CreateType ();

      // Finally, save the assembly
      assemblyBuilder.Save ( name.Name + ".dll" );



    } //eof Main 

  } //eof Program
 } //eof namespace

Here is the Console programming printing the output ( remember that it has to reference the dll. Let the advance students present the solution for combining everything in one solution with dynamic loading and checking if there is already build dll.

  //add the reference to the newly generated dll
  use MyEnums ; 

class Program
{
static void Main ()
{

  Array values = Enum.GetValues ( typeof ( EnumeratedTypes.MyEnum ) );

  foreach (EnumeratedTypes.MyEnum val in values)
  {
    Console.WriteLine ( String.Format ( "{0}: {1}", Enum.GetName ( typeof ( EnumeratedTypes.MyEnum ), val ), val ) );
  }
  Console.WriteLine ( "Hit enter to exit " );
  Console.ReadLine ();
 } //eof Main 

} //eof Program

            
link|flag
vote up 6 vote down

I'm doing this exact thing, but you need to do some kind of code generation for this to work.

In my solution, I added a project "EnumeratedTypes". This is a console application which gets all of the values from the database and constructs the enums from them. Then it saves all of the enums to an assembly.

The enum generation code is like this:

// Get the current application domain for the current thread
AppDomain currentDomain = AppDomain.CurrentDomain;

// Create a dynamic assembly in the current application domain,
// and allow it to be executed and saved to disk.
AssemblyName name = new AssemblyName("MyEnums");
AssemblyBuilder assemblyBuilder = currentDomain.DefineDynamicAssembly(name,
                                      AssemblyBuilderAccess.RunAndSave);

// Define a dynamic module in "MyEnums" assembly.
// For a single-module assembly, the module has the same name as the assembly.
ModuleBuilder moduleBuilder = assemblyBuilder.DefineDynamicModule(name.Name,
                                  name.Name + ".dll");

// Define a public enumeration with the name "MyEnum" and an underlying type of Integer.
EnumBuilder myEnum = moduleBuilder.DefineEnum("EnumeratedTypes.MyEnum",
                         TypeAttributes.Public, typeof(int));

// Get data from database
MyDataAdapter someAdapter = new MyDataAdapter();
MyDataSet.MyDataTable myData = myDataAdapter.GetMyData();

foreach (MyDataSet.MyDataRow row in myData.Rows)
{
    myEnum.DefineLiteral(row.Name, row.Key);
}

// Create the enum
myEnum.CreateType();

// Finally, save the assembly
assemblyBuilder.Save(name.Name + ".dll");

My other projects in the solution reference this generated assembly. As a result, I can then use the dynamic enums in code, complete with intellisense.

Then, I added a post-build event so that after this "EnumeratedTypes" project is built, it runs itself and generates the "MyEnums.dll" file.

By the way, it helps to change the build order of your project so that "EnumeratedTypes" is built first. Otherwise, once you start using your dynamically generated .dll, you won't be able to do a build if the .dll ever gets deleted. (Chicken and egg kind of problem -- your other projects in the solution need this .dll to build properly, and you can't create the .dll until you build your solution...)

I got most of the above code from this msdn article.

Hope this helps!

link|flag
vote up 0 vote down

Let's say you have the following in your DB:

table enums
-----------------
| id | name     |
-----------------
| 0  | MyEnum   |
| 1  | YourEnum |
-----------------

table enum_values
----------------------------------
| id | enums_id | value | key    |
----------------------------------
| 0  | 0        | 0     | Apple  |
| 1  | 0        | 1     | Banana |
| 2  | 0        | 2     | Pear   |
| 3  | 0        | 3     | Cherry |
| 4  | 1        | 0     | Red    |
| 5  | 1        | 1     | Green  |
| 6  | 1        | 2     | Yellow |
----------------------------------

Construct a select to get the values you need:

select * from enums e inner join enum_values ev on ev.enums_id=e.id where e.id=0

Construct the source code for the enum and you'll get something like:

String enumSourceCode = "enum " + enumName + "{" + enumKey1 + "=" enumValue1 + "," + enumKey2 + ... + "}";

(obviously this is constructed in a loop of some kind.)

Then comes the fun part, Compiling your enum and using it:

CodeDomProvider provider = CodeDomProvider.CreateProvider("CSharp");
CompilerParameters cs = new CompilerParameters();
cp.GenerateInMemory = True;

CompilerResult result = provider.CompileAssemblyFromSource(cp, enumSourceCode);

Type enumType = result.CompiledAssembly.GetType(enumName);

Now you have the type compiled and ready for use.
To get a enum value stored in the DB you can use:

[Enum].Parse(enumType, value);

where value can be either the integer value (0, 1, etc.) or the enum text/key (Apple, Banana, etc.)

link|flag
In what way would this actually help? There's no type safety and no intellisense. Basically it's only a more complicated way of using a constant since he has to provide the value anyway. – Runeborg Sep 10 at 12:13
vote up 1 vote down

You want System.Web.Compilation.BuildProvider

I also doubt the wisdom of doing this, but then there maybe a good use case that I can't think of.

What you're looking for are Build Providers i.e. System.Web.Compilation.BuildProvider

They're used very effectively by SubSonic, you can download the source and see how they use them, you won't need anything half as intricate as what they're doing.

Hope this helps.

link|flag
vote up 13 vote down

You do realize that Enums must be specified at compile time? You can't dynamically add enums during run-time - and why would you, there would be no use/reference to them in the code?

From Professional C# 2008:

The real power of enums in C# is that behind the scenes they are instantiated as structs derived from the base class, System.Enum . This means it is possible to call methods against them to perform some useful tasks. Note that because of the way the .NET Framework is implemented there is no performance loss associated with treating the enums syntactically as structs. In practice, once your code is compiled, enums will exist as primitive types, just like int and float .

So, I'm not sure you can use Enums the way you want to.

link|flag
vote up 4 vote down

Does it have to be an actual enum? How about using a Dictionary<string,int> instead?

for example

Dictionary<string, int> MyEnum = new Dictionary(){{"One", 1}, {"Two", 2}};
Console.WriteLine(MyEnum["One"]);
link|flag
I would not try to do it this way. You loose your compile time checks and become prone to typing errors. All benefits of enums gone. You could introduce string constants, but then you are back where you started. – Daniel Brückner Apr 7 at 11:10
I agree. But remember mistyped strings will be caught at runtime. Just add a test case to cover all the enum members. – SDX2000 Apr 7 at 14:38
mistyping isn't an issue if you use constants instead of literals – Maslow Aug 4 at 12:25
vote up 1 vote down

Basically you're asking "How can I make intellisense aware of values I've stored in the database?"

link|flag
this can be done - and I have written wrapper class onto quite a structured object that represented the reference data store (we could get away with loading it all upfront). As I recall, the only annoyance was weird inlining effects (I was using the StackFrame to get method names..). – kpollock Apr 7 at 14:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.