given the code below

dynamic e = new ExpandoObject();
var d = e as IDictionary<string, object>;
for (int i = 0; i < rdr.FieldCount; i++)
   d.Add(rdr.GetName(i), DBNull.Value.Equals(rdr[i]) ? null : rdr[i]);

Is there a way to make it case insensitive so given the field name employee_name

e.Employee_name works just as well as e.employee_name

there doesn't seem to be an obvious way, perhaps a hack ?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

You may checkout Massive's implementation of a MassiveExpando which is case insensitive dynamic object.

link|improve this answer
Interesting, wasn't aware of this fork of massive, this hasn't been updated since feb so will look into the differences, thanks ! – Kumar Oct 14 '11 at 20:05
feedback

More as a curiosity than as a solution:

dynamic e = new ExpandoObject();
var value = 1;
var key = "Key";

var resul1 = RuntimeOps.ExpandoTrySetValue(
    e, 
    null, 
    -1, 
    value, 
    key, 
    true); // The last parameter is ignoreCase

object value2;
var result2 = RuntimeOps.ExpandoTryGetValue(
    e, 
    null, 
    -1, 
    key.ToLowerInvariant(), 
    true, 
    out value2);  // The last parameter is ignoreCase

RuntimeOps.ExpandoTryGetValue/ExpandoTrySetValue use internal methods of ExpandoObject that can control the case sensitivity. The null, -1, parameters are taken from the values used internally by ExpandoObject (RuntimeOps calls directly the internal methods of ExpandoObject)

Remember that those methods are This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.

link|improve this answer
obsolete does not compile in .net 4 msdn.microsoft.com/en-us/library/dd782193.aspx – Kumar Oct 14 '11 at 21:33
@Kumar I have to tell the truth... Yes, I had tested the code on Visual Studio 2010 and it worked. Just to be sure this morning I tested it again and it worked :-) Interestingly the ExpandoTryGetValue and ExpandoTrySetValue aren't marked obsolete on my computer so I didn't receive any warning. – xanatos Oct 15 '11 at 5:32
hmm, interesting, not sure what could be different here! I could not compile, so went looking for answers and found the msdn page ! i have vs2010 ultimate sp1 on xp sp3 ! there's no beta's or anything on this pc either and not familiar of a .net 4 sp1 or preview either, any thoughts ? – Kumar Oct 17 '11 at 14:43
@Kumar Using vs 2010 pro on xp sp3 here here, so it isn't the problem. And I don't have the .NET 4.5 or anything similar. Mah. My runtime version is v4.0.30319 (I looked in Visual Studio at the Microsoft.CSharp reference)... MMmh... Do you have the async ctp installed or the mvc 3.0? They modify the runtime, if I remember correctly – xanatos Oct 17 '11 at 14:45
feedback

public static class IDictionaryExtensionMethods
{
  public static void AddCaseInsensitive(this IDictionary dictionary, string key, object value)
  {
     dictionary.Add(key.ToUpper(), value);
   }

  public static object Get(this IDictionary dictionary, string key)
   {
      return dictionary[key.ToUpper()];
   }
}

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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