Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using dynamic in C# to access field of anonymous type - possible?

I've got a controller method:

public JsonResult CalculateStuff(int coolArg)
{
    if(calculatePossible)
       return Json(CoolMethod(coolArg));
    else return Json(new { Calculated = false });
}

Now, I'd like to test this.

public void MyTest
{
    var controller = GetControllerInstance();
    var result = controller.CalculateStuff().Data as dynamic;
    Assert.IsTrue(result.Calculated == false);        
}

This throws a RuntimeBinderException saying that Calculated is not defined. Is there any way to achieve this?

UPDATE

Following Jons' advice, I used InternalsVisibleTo to befriend my test assembly. Everything works fine. Thank you Jon.

like image 590
Max Avatar asked Oct 11 '22 23:10

Max


1 Answers

You can do it, but only within the same assembly. The anonymous type is internal.

It should also be okay if you use InternalsVisibleTo in your production assembly to grant access to your test assembly though.

like image 185
Jon Skeet Avatar answered Nov 04 '22 05:11

Jon Skeet