Skip to content

v3.0.4

Choose a tag to compare

@friflo friflo released this 13 Feb 17:38
· 223 commits to main since this release

RelationsEnumerator<>.Current returns entities now by ref. This enables to modify relations in a GetRelations<>() loop.
E.g.

  foreach (ref var relation in entity.GetRelations<MyRelation>()) {
      relation.Value += 1;
  }