Currently property and parameter names are matched using casing. It would be better to be case invariant to make things easier. Example below should work
public class SomeClass
{
public SomeClass(int someValue) { }
}
var instance = container.Locate<SomeClass>(new { SomeValue = 10 } );
Currently property and parameter names are matched using casing. It would be better to be case invariant to make things easier. Example below should work