Jake Ginnivan
Jake Ginnivan
I used this class in Shouldly to clean up expressions so I pulled it out into a new project. https://github.com/JakeGinnivan/ExpressionToString
``` graphOptionsEngine .Assign(() => MortgageGraph) .From(() => CreateMortgageGraph(ShowRoots, ShowFormulas), ex => { }) .TriggerNow(); ``` Not sure about the name of the API, but should be able to trigger the...
``` csharp void Main() { var engine = new DependencyEngine(); engine.Assign(() => C).From(() => A + B, e => { }); engine.Assign(() => D).From(() => A + C, e =>...
Both the scenario of calling Bind twice, but also two separate expressions targeting the same property
For instance 'Required' error messages Putting this into my controller fixes it ([LanguageFilter] does not help) ``` protected override void Initialize(RequestContext requestContext) { var culture = requestContext.HttpContext.Request.Cookies["_culture"]; if (culture !=...
The language selector control animates away so you cannot select languages
I've got a few loaders reporting an error when I've just thrown a redirect response from the loader. Thoughts on looking at the exception and if the error is a...
``` csharp var timeSpan = TimeSpan.FromHours(1); timeSpan.ShouldBe(timeSpan.Add(TimeSpan.FromHours(1.1d)), TimeSpan.FromHours(1)); ``` ## Current > ``` > timeSpan > should be within > 01:00:00 > of > 02:06:00 > but was > 01:00:00...
### What is the new or updated feature that you are suggesting? Just trying v6, and noticed that the types of the form are not sourced from the validator, instead...
Throwing a redirect is a supported pattern and should not report a span error. Fixes #48