We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40c3692 commit 3d0d7eaCopy full SHA for 3d0d7ea
src/Atc.Cosmos.EventStore.Cqrs/Projections/ProjectionFilter.cs
@@ -15,11 +15,7 @@ public ProjectionFilter(string filter)
15
? CreateEvaluateAll()
16
: CreateEvaluation(p))
17
.ToArray();
18
- endsOnAcceptAll = filter
19
- .Split(
20
- new[] { EventStreamId.PartSeperator },
21
- StringSplitOptions.RemoveEmptyEntries)
22
- .Last() == "**";
+ endsOnAcceptAll = filter.EndsWith("**");
23
}
24
25
public bool Evaluate(StreamId streamId)
0 commit comments