From 846bb16730aa443341b942a11594b66219e47f19 Mon Sep 17 00:00:00 2001 From: Alexandre SPIESER Date: Wed, 17 Apr 2019 19:05:17 +0100 Subject: [PATCH] Update BaseMongoRepository.TKey.Index.cs --- .../KeyTypedRepository/BaseMongoRepository.TKey.Index.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MongoDbGenericRepository/KeyTypedRepository/BaseMongoRepository.TKey.Index.cs b/MongoDbGenericRepository/KeyTypedRepository/BaseMongoRepository.TKey.Index.cs index 092c90d..c0847ba 100644 --- a/MongoDbGenericRepository/KeyTypedRepository/BaseMongoRepository.TKey.Index.cs +++ b/MongoDbGenericRepository/KeyTypedRepository/BaseMongoRepository.TKey.Index.cs @@ -109,7 +109,7 @@ namespace MongoDbGenericRepository /// /// The MongoDb accessor to manage indexes. /// - protected MongoDbIndexHandler MongoDbIndexHandler + protected virtual MongoDbIndexHandler MongoDbIndexHandler { get { @@ -124,6 +124,7 @@ namespace MongoDbGenericRepository } return _mongoDbIndexHandler; } + set { _mongoDbIndexHandler = value; } } ///