@@ -32,7 +32,7 @@ public class UpdateAndGet<T, TProjection> : UpdateBase<T> where T : IEntity
32
32
{
33
33
readonly List < PipelineStageDefinition < T , TProjection > > _stages = new ( ) ;
34
34
FilterDefinition < T > _filter = Builders < T > . Filter . Empty ;
35
- protected private readonly FindOneAndUpdateOptions < T , TProjection > options = new ( ) { ReturnDocument = ReturnDocument . After } ;
35
+ private protected readonly FindOneAndUpdateOptions < T , TProjection > options = new ( ) { ReturnDocument = ReturnDocument . After } ;
36
36
readonly IClientSessionHandle ? _session ;
37
37
readonly Dictionary < Type , ( object filterDef , bool prepend ) > ? _globalFilters ;
38
38
readonly Action < UpdateBase < T > > ? _onUpdateAction ;
@@ -107,7 +107,11 @@ public UpdateAndGet<T, TProjection> Match(Template template)
107
107
/// <param name="caseSensitive">Case sensitivity of the search (optional)</param>
108
108
/// <param name="diacriticSensitive">Diacritic sensitivity of the search (optional)</param>
109
109
/// <param name="language">The language for the search (optional)</param>
110
- public UpdateAndGet < T , TProjection > Match ( Search searchType , string searchTerm , bool caseSensitive = false , bool diacriticSensitive = false , string ? language = null )
110
+ public UpdateAndGet < T , TProjection > Match ( Search searchType ,
111
+ string searchTerm ,
112
+ bool caseSensitive = false ,
113
+ bool diacriticSensitive = false ,
114
+ string ? language = null )
111
115
{
112
116
if ( searchType != Search . Fuzzy )
113
117
{
@@ -457,7 +461,7 @@ bool ShouldSetModDate()
457
461
Cache < T > . HasModifiedOn &&
458
462
! Defs . Any (
459
463
d => d
460
- . Render ( BsonSerializer . SerializerRegistry . GetSerializer < T > ( ) , BsonSerializer . SerializerRegistry , Driver . Linq . LinqProvider . V3 )
464
+ . Render ( new ( BsonSerializer . SerializerRegistry . GetSerializer < T > ( ) , BsonSerializer . SerializerRegistry ) )
461
465
. ToString ( )
462
466
. Contains ( $ "\" { Cache < T > . ModifiedOnPropName } \" ") ) ;
463
467
}
0 commit comments