@@ -130,13 +130,8 @@ public async Task UpdateTimeTickersWithUnifiedContext(Guid[] timeTickerIds, Inte
130130 await using var dbContext = await DbContextFactory . CreateDbContextAsync ( cancellationToken ) . ConfigureAwait ( false ) ; ;
131131 var idList = timeTickerIds . ToList ( ) ;
132132 await dbContext . Set < TTimeTicker > ( )
133- << < << << HEAD
134- . Where ( x => timeTickerIds . Contains ( x . Id ) )
135- . ExecuteUpdateAsync ( MappingExtensions . UpdateTimeTicker < TTimeTicker > ( functionContext , _clock . UtcNow ) , cancellationToken ) . ConfigureAwait ( false ) ;
136- == = == ==
137133 . Where ( x => idList . Contains ( x . Id ) )
138- . ExecuteUpdateAsync ( setter => setter . UpdateTimeTicker < TTimeTicker > ( functionContext , _clock . UtcNow ) , cancellationToken ) . ConfigureAwait ( false ) ;
139- > >>> >>> 39 b9b90 ( Fix . NET 9 + EF Core query failures caused by ReadOnlySpan array. Contains ( ) ( #574 ) )
134+ . ExecuteUpdateAsync ( MappingExtensions . UpdateTimeTicker < TTimeTicker > ( functionContext , _clock . UtcNow ) , cancellationToken ) . ConfigureAwait ( false ) ;
140135 }
141136
142137 public async Task < TimeTickerEntity [ ] > GetEarliestTimeTickers ( CancellationToken cancellationToken )
@@ -567,13 +562,8 @@ public async Task UpdateCronTickerOccurrencesWithUnifiedContext(Guid[] cronOccur
567562 await using var dbContext = await DbContextFactory . CreateDbContextAsync ( cancellationToken ) . ConfigureAwait ( false ) ; ;
568563 var idList = cronOccurrenceIds . ToList ( ) ;
569564 await dbContext . Set < CronTickerOccurrenceEntity < TCronTicker > > ( )
570- << < << << HEAD
571- . Where ( x => cronOccurrenceIds . Contains ( x . Id ) )
572- . ExecuteUpdateAsync ( MappingExtensions . UpdateCronTickerOccurrence < TCronTicker > ( functionContext ) , cancellationToken )
573- == = == ==
574565 . Where ( x => idList . Contains ( x . Id ) )
575- . ExecuteUpdateAsync ( setter => setter . UpdateCronTickerOccurrence < TCronTicker > ( functionContext ) , cancellationToken )
576- >>> > >>> 39 b9b90 ( Fix . NET 9 + EF Core query failures caused by ReadOnlySpan array. Contains ( ) ( #574 ) )
566+ . ExecuteUpdateAsync ( MappingExtensions . UpdateCronTickerOccurrence < TCronTicker > ( functionContext ) , cancellationToken )
577567 . ConfigureAwait ( false ) ;
578568 }
579569
0 commit comments