2010-06-21 15 views
6

Quiero construir una expresión Lambda utilizando expresiones Linq que puedan acceder a un elemento en un diccionario de estilo 'bolsa de propiedades' utilizando un índice String. Estoy usando .Net 4.Cómo accedo a un elemento del diccionario utilizando Linq Expressions

static void TestDictionaryAccess() 
    { 
     ParameterExpression valueBag = Expression.Parameter(typeof(Dictionary<string, object>), "valueBag"); 
     ParameterExpression key = Expression.Parameter(typeof(string), "key"); 
     ParameterExpression result = Expression.Parameter(typeof(object), "result"); 
     BlockExpression block = Expression.Block(
      new[] { result },    //make the result a variable in scope for the block 
      Expression.Assign(result, key), //How do I assign the Dictionary item to the result ?????? 
      result       //last value Expression becomes the return of the block 
     ); 

     // Lambda Expression taking a Dictionary and a String as parameters and returning an object 
     Func<Dictionary<string, object>, string, object> myCompiledRule = (Func<Dictionary<string, object>, string, object>)Expression.Lambda(block, valueBag, key).Compile(); 

     //-------------- invoke the Lambda Expression ---------------- 
     Dictionary<string, object> testBag = new Dictionary<string, object>(); 
     testBag.Add("one", 42); //Add one item to the Dictionary 
     Console.WriteLine(myCompiledRule.DynamicInvoke(testBag, "one")); // I want this to print 42 
    } 

En el método de ensayo anterior, quiero asignar el valor del artículo diccionario decir testBag [ "uno"] en el resultado. Tenga en cuenta que he asignado la cadena clave pasada en el resultado para demostrar la llamada a la asignación.

Respuesta

10

Usted puede utilizar el siguiente para acceder a la propiedad Item del Dictionary

Expression.Property(valueBag, "Item", key) 

Aquí está el cambio de código que debe hacer el truco.

ParameterExpression valueBag = Expression.Parameter(typeof(Dictionary<string, object>), "valueBag"); 
ParameterExpression key = Expression.Parameter(typeof(string), "key"); 
ParameterExpression result = Expression.Parameter(typeof(object), "result"); 
BlockExpression block = Expression.Block(
    new[] { result },    //make the result a variable in scope for the block   
    Expression.Assign(result, Expression.Property(valueBag, "Item", key)), 
    result       //last value Expression becomes the return of the block 
); 
+0

Gracias Chris, eso funciona una delicia. –

Cuestiones relacionadas