Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Expressions/Expressions.history
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ minor: introduce parameter to control how where removes elements
patch: Add support for .NET 10
patch: improve reversed FirstOrDefault
patch: fix cast exception when working with collections that are not model elements
patch: propagate transaction changes until all changes are propagated
2 changes: 1 addition & 1 deletion Expressions/Expressions/Execution/ExecutionEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public void BeginTransaction()
/// </summary>
public void CommitTransaction()
{
if (changeListener.Count > 0 || changedNodes.Count > 0)
while (changeListener.Count > 0 || changedNodes.Count > 0)
{
var nodes = new List<INotifiable>(changeListener.Count + changedNodes.Count);
nodes.AddRange(changedNodes);
Expand Down
Loading