ReactGraph icon indicating copy to clipboard operation
ReactGraph copied to clipboard

ReactGraph is a library to make change propagation easy in .NET.

Results 7 ReactGraph issues
Sort by recently updated
recently updated
newest added

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...

enhancement

``` csharp void Main() { var engine = new DependencyEngine(); engine.Assign(() => C).From(() => A + B, e => { }); engine.Assign(() => D).From(() => A + C, e =>...

bug

Both the scenario of calling Bind twice, but also two separate expressions targeting the same property

I'm not sure yet if we need that for everything, or per expression...

enhancement

Should suspend walking through the dependency graph and then resume (continuation)

HIGH PRIO