Skip to content

Commit

Permalink
Fix RocksDB secondary indexes
Browse files Browse the repository at this point in the history
  • Loading branch information
halgari committed Jan 19, 2024
1 parent df281bd commit ffd2c5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/NexusMods.EventSourcing.TestModel/Model/Archive.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class Archive(IEntityContext context, EntityId<Archive> id) : AEntity<Arc

[Indexed("D27156FF-8573-4120-BD53-1BD6D5106BA2")]
public ulong Hash => _hash.Get(this);
internal static readonly ULongAttribute<Archive> _hash = new(nameof(Size));
internal static readonly ULongAttribute<Archive> _hash = new(nameof(Hash));

public ReadOnlyObservableCollection<ArchiveEntry> Entries => _entries.Get(this);
internal static readonly MultiEntityAttributeDefinition<Archive, ArchiveEntry> _entries = new(nameof(Entries));
Expand Down

0 comments on commit ffd2c5e

Please sign in to comment.