We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ee3f22f + c4064ae commit 7d7a7afCopy full SHA for 7d7a7af
framework/src/Volo.Abp.MongoDB/Volo/Abp/MongoDB/DistributedEvents/MongoDbContextEventInbox.cs
@@ -64,7 +64,7 @@ public virtual async Task<List<IncomingEventInfo>> GetWaitingEventsAsync(int max
64
var outgoingEventRecords = await dbContext
65
.IncomingEvents
66
.AsQueryable()
67
- .Where(x => !x.Processed)
+ .Where(x => x.Processed == false)
68
.WhereIf(transformedFilter != null, transformedFilter!)
69
.OrderBy(x => x.CreationTime)
70
.Take(maxCount)
0 commit comments